EditItems property
PermissionScope?
get
EditItems
Implementation
PermissionScope? get EditItems => this._editItems;
set
EditItems
(PermissionScope? value)
Implementation
set EditItems(PermissionScope? value) {
if (this.CanSetFieldValue(this._editItems, value)) {
this._editItems = value;
this.Changed();
}
this._AdjustPermissionLevel();
}