CompanyName property

String? CompanyName
Gets or sets the compnay name of the contact.

Implementation

String? get CompanyName =>
    this.PropertyBag[ContactSchema.CompanyName] as String?;
void CompanyName=(String? value)

Implementation

set CompanyName(String? value) =>
    this.PropertyBag[ContactSchema.CompanyName] = value;