UITableView.AllowsMultipleSelectionDuringEditing 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 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
.