- tableView
- Table view containing the row.
- indexPath
- Location of the row.
true if the row is editable, otherwise false.
This method allows specific rows to be editable or not. If this method is not implemented, all rows are assumed to be editable. Editable rows display the insertion or deletion control in their cell when the table view is in editing mode.
Rows that are not editable will ignore the UITableViewCell.EditingStyle property and will not be indented.
Rows that are editable, but should not display the insertion or deletion control, can return UITableViewCellEditingStyle.None from the UITableViewSource.EditingStyleForRow(UITableView, Foundation.NSIndexPath) method on the table view's UIKit.UITableViewSource.
Declared in [UITableViewDataSource]