UITableView.AllowsMultipleSelectionDuringEditing Property

Definition

Whether more than one row can be selected while in editing mode.

public virtual bool AllowsMultipleSelectionDuringEditing { [Foundation.Export("allowsMultipleSelectionDuringEditing")] get; [Foundation.Export("setAllowsMultipleSelectionDuringEditing:")] set; }
member this.AllowsMultipleSelectionDuringEditing : bool with get, set

Property Value

false if multiple selection is prohibited, true if it is allowed.

Attributes

Remarks

When this property is true, a check mark is placed next to each row that is tapped. Tapping the row again removes the check mark. In addition, the UITableView does not query for editing styles when it goes into editing mode.

Call IndexPathsForSelectedRows to identify the selected rows.

The default value of this property is false.

Applies to