Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.Element.GetActiveCell C# (CSharp) Метод

GetActiveCell() публичный Метод

Returns the currently active UITableViewCell for this element, or null if the element is not currently visible
public GetActiveCell ( ) : UITableViewCell
Результат UITableViewCell
		public UITableViewCell GetActiveCell ()
		{
			var tv = GetContainerTableView ();
			if (tv == null)
				return null;
			var path = IndexPath;
			if (path == null)
				return null;
			return tv.CellAt (path);
		}