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

GetImmediateRootElement() public method

If the cell is attached will return the immediate RootElement
public GetImmediateRootElement ( ) : RootElement
return RootElement
		public RootElement GetImmediateRootElement ()
		{
				var section = Parent as Section;
				if (section == null)
					return null;
				return section.Parent as RootElement;
		}