Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.Element.GetContainerTableView C# (CSharp) 메소드

GetContainerTableView() 공개 메소드

Returns the UITableView associated with this element, or null if this cell is not currently attached to a UITableView
public GetContainerTableView ( ) : UITableView
리턴 UITableView
		public UITableView GetContainerTableView ()
		{
			var root = GetImmediateRootElement ();
			if (root == null)
				return null;
			return root.TableView;
		}