MonoTouch.Dialog.MultilineEntryElement.CreateTextField C# (CSharp) Method

CreateTextField() protected method

protected CreateTextField ( RectangleF frame ) : DialogTextView
frame System.Drawing.RectangleF
return DialogTextView
		protected virtual DialogTextView CreateTextField (RectangleF frame)
		{
			return new DialogTextView (frame) {
				AutoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleLeftMargin,
				Text = Value ?? "",
				Tag = 1,
				BackgroundColor = UIColor.Clear
			};
		}