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);
		}