Sample.EditingDialog.EditingSource.CanEditRow C# (CSharp) Method

CanEditRow() public method

public CanEditRow ( UITableView tableView, NSIndexPath indexPath ) : bool
tableView UITableView
indexPath NSIndexPath
return bool
			public override bool CanEditRow (UITableView tableView, NSIndexPath indexPath)
			{
				// Trivial implementation: we let all rows be editable, regardless of section or row
				return true;
			}