UITableViewCellEditingStyle Enum
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.
An enumeration of editing styles for a UITableView cell.
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public enum UITableViewCellEditingStyle
type UITableViewCellEditingStyle =
- Inheritance
-
UITableViewCellEditingStyle
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No editing control is displayed in the cell (this is the default). |
Delete | 1 | A red circle with a white minus sign is displayed, to indicate the cell can be deleted. |
Insert | 2 | A gree circle with a white plus sign is displayed, indicating a new row can be inserted. |
Remarks
The editing style of a cell is set on the EditingStyle property. The editing control is displayed on the left hand side of the cell when it is in editing mode.