UITableViewCell.ShowsReorderControl Property

Definition

Whether the reordering control is currently showing in the cell (read-only).

public virtual bool ShowsReorderControl { [Foundation.Export("showsReorderControl")] get; [Foundation.Export("setShowsReorderControl:")] set; }
member this.ShowsReorderControl : bool with get, set

Property Value

Default value is false.

Attributes

Remarks

The reordering control consists of three grey, horizontal lines on the right side of the cell. Dragging this control causes the entire cell to be moved to another position in the table.

The reordering control only appears if this property is set and the MoveRow(UITableView, NSIndexPath, NSIndexPath) method has been implemented on the UITableViewSource. The reordering control can be selectively hidden on specific rows by returning false from CanMoveRow(UITableView, NSIndexPath)

Applies to