Standard property

TimeChange? Standard
Gets or sets a TimeChange defining when the time changes to Standard Time.

Implementation

TimeChange? get Standard => this._standard;
void Standard=(TimeChange? value)

Implementation

set Standard(TimeChange? value) {
  if (this.CanSetFieldValue(this._standard, value)) {
    this._standard = value;
    this.Changed();
  }
}