Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.Element.GetContainerTableView C# (CSharp) Method

GetContainerTableView() public method

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