DisplayName property

String? get DisplayName
Gets or sets the Location DisplayName.

Implementation

String? get DisplayName => this._displayName;
set DisplayName (String? value)

Implementation

set DisplayName(String? value) {
  if (this.CanSetFieldValue(this._displayName, value)) {
    this._displayName = value;
    this.Changed();
  }
}