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

BecomeFirstResponder() public method

Makes this cell the first responder (get the focus)
public BecomeFirstResponder ( bool animated ) : void
animated bool /// Whether scrolling to the location of this cell should be animated ///
return void
		public void BecomeFirstResponder (bool animated)
		{
			becomeResponder = true;
			if (_tableView == null)
				return;
			_tableView.ScrollToRow (this.GetIndexPath(), UITableViewScrollPosition.Middle, animated);
			if (entry != null) {
				entry.BecomeFirstResponder ();
				becomeResponder = false;
			}
		}