MonoMobile.Views.ListSource.CommitEditingStyle C# (CSharp) Method

CommitEditingStyle() public method

public CommitEditingStyle ( UITableView tableView, UITableViewCellEditingStyle editingStyle, NSIndexPath indexPath ) : void
tableView UITableView
editingStyle UITableViewCellEditingStyle
indexPath NSIndexPath
return void
		public override void CommitEditingStyle(UITableView tableView, UITableViewCellEditingStyle editingStyle, NSIndexPath indexPath)
		{
			if (editingStyle != UITableViewCellEditingStyle.None)
			{
				if (_EditCommand != null)
				{
					_EditCommand.Execute(indexPath.Row);
				}
			}
		}