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