UITableView.Editing Property

Definition

Whether the table view is in editing mode.

public virtual bool Editing { [Foundation.Export("isEditing")] get; [Foundation.Export("setEditing:")] set; }
member this.Editing : bool with get, set

Property Value

true if the table is currently in editing mode, false if not. The default is false.

Attributes

Remarks

When this property is true, the table view is in editing mode: cells may show an insertion or deletion control on their left side and a reordering control on the right (depending on how the cell is configured). Tapping a control causes the table view to invoke the UITableViewSource method CommitEditingStyle(UITableView, UITableViewCellEditingStyle, NSIndexPath).

Applies to