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

FetchValue() public method

Copies the value from the UITextField in the EntryElement to the Value property and raises the Changed event if necessary.
public FetchValue ( ) : void
return void
		public void FetchValue ()
		{
			if (entry == null)
				return;

			var newValue = entry.Text;
			if (newValue == Value)
				return;
			
			Value = newValue;
			
			if (Changed != null)
				Changed (this, EventArgs.Empty);
		}