StructuredAddress
Class
Contains information for the address of a (Ultimate) Creditor or Ultimate Debtor in a structured address schema.
Definition
Namespace:Telerik.Barcode
Assembly:Telerik.Reporting.dll
Syntax:
C#
public class StructuredAddress : Address
Inheritance: objectAddressStructuredAddress
Inherited Members
Constructors
Initializes a new instance of the StructuredAddress class.
C#
public StructuredAddress(string country, string zipCode, string city, string street = null, string houseNumber = null)
Two-letter country code according to ISO 3166-1.
zipCodestringMaximum 16 characters permitted. Must be provided without a country code prefix.
citystringMaximum 35 characters permitted.
streetstringStreet. Maximum 70 characters permitted.
houseNumberstringBuilding number. Maximum 16 characters permitted.
Properties
City
string
Gets the name of the city.
C#
public string City { get; }
HouseNumber
string
Gets the house number.
C#
public string HouseNumber { get; }
Street
string
Gets the name of the street.
C#
public string Street { get; }
ZipCode
string
Gets the P.O. number.
C#
public string ZipCode { get; }