UITableView.Editing Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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).