MonoTouch.Dialog.StringElement.Selected C# (CSharp) Méthode

Selected() public méthode

public Selected ( DialogViewController dvc, UITableView tableView, NSIndexPath indexPath ) : void
dvc DialogViewController
tableView UITableView
indexPath NSIndexPath
Résultat void
		public override void Selected (DialogViewController dvc, UITableView tableView, NSIndexPath indexPath)
		{
			if (Tapped != null)
				Tapped ();

			base.Selected(dvc, tableView, indexPath);

			if (DeselectAutomatically)
				tableView.DeselectRow (indexPath, true);
		}