CanCreateItems property

bool? CanCreateItems
Gets or sets a value indicating whether the user can create new items.

Implementation

bool? get CanCreateItems => this._canCreateItems;
void CanCreateItems=(bool? value)

Implementation

set CanCreateItems(bool? value) {
  if (this.CanSetFieldValue(this._canCreateItems, value)) {
    this._canCreateItems = value;
    this.Changed();
  }
  this._AdjustPermissionLevel();
}