MonoTouch.Dialog.UIViewElement.UIViewElement C# (CSharp) Method

UIViewElement() public method

public UIViewElement ( string caption, UIView view, bool transparent ) : System
caption string
view UIView
transparent bool
return System
		public UIViewElement (string caption, UIView view, bool transparent) : base (caption) 
		{
			this.View = view;
			this.Flags = transparent ? CellFlags.Transparent : 0;
			key = new NSString ("UIViewElement" + count++);
		}