[]
Gets or sets the "address1" field in the signature details dialog.
Use this property to read the first address line stored in these signature details, such as a street address or post office box.
public string Address1 { get; set; }
Public Property Address1 As String
SignatureDetails details = new SignatureDetails();
details.Address1 = "1 Microsoft Way";
string address1 = details.Address1;