UITableViewSource.WillDeselectRow(UITableView, NSIndexPath) Method
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.
Called prior to the de-selection of a row.
[Foundation.Export("tableView:willDeselectRowAtIndexPath:")]
public virtual Foundation.NSIndexPath WillDeselectRow (UIKit.UITableView tableView, Foundation.NSIndexPath indexPath);
abstract member WillDeselectRow : UIKit.UITableView * Foundation.NSIndexPath -> Foundation.NSIndexPath
override this.WillDeselectRow : UIKit.UITableView * Foundation.NSIndexPath -> Foundation.NSIndexPath
Parameters
- tableView
- UITableView
The table involved.
- indexPath
- NSIndexPath
The index path of the row about to be de-selected.
Returns
If null
, the row will not be de-selected. If a value other than indexPath
requests that another row be de-selected.
- Attributes