MonoMobile.Views.ListSource.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)
		{
			return (_EditingStyle != UITableViewCellEditingStyle.None) && (bool)_CanEditMember.GetValue(_CanEditSource);
		}