DeleteItems property

PermissionScope? DeleteItems
Gets or sets a value indicating if/how the user can delete existing items.

Implementation

PermissionScope? get DeleteItems => this._deleteItems;
void DeleteItems=(PermissionScope? value)

Implementation

set DeleteItems(PermissionScope? value) {
  if (this.CanSetFieldValue(this._deleteItems, value)) {
    this._deleteItems = value;
    this.Changed();
  }
  this._AdjustPermissionLevel();
}