MonoTouch.Dialog.MultilineEntryElement.BecomeFirstResponder C# (CSharp) 메소드

BecomeFirstResponder() 공개 메소드

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 ///
리턴 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;
			}
		}