UITextFieldDelegate.EditingEnded Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EditingEnded(UITextField) |
Indicates that editing has ended in the specified text field. |
EditingEnded(UITextField, UITextFieldDidEndEditingReason) |
Indicates that editing has ended in the specified text field for the specified reason. |
EditingEnded(UITextField)
Indicates that editing has ended in the specified text field.
[Foundation.Export("textFieldDidEndEditing:")]
public virtual void EditingEnded (UIKit.UITextField textField);
abstract member EditingEnded : UIKit.UITextField -> unit
override this.EditingEnded : UIKit.UITextField -> unit
Parameters
- textField
- UITextField
The text field for which editing ended.
- Attributes
Applies to
EditingEnded(UITextField, UITextFieldDidEndEditingReason)
Indicates that editing has ended in the specified text field for the specified reason.
[Foundation.Export("textFieldDidEndEditing:reason:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void EditingEnded (UIKit.UITextField textField, UIKit.UITextFieldDidEndEditingReason reason);
abstract member EditingEnded : UIKit.UITextField * UIKit.UITextFieldDidEndEditingReason -> unit
override this.EditingEnded : UIKit.UITextField * UIKit.UITextFieldDidEndEditingReason -> unit
Parameters
- textField
- UITextField
The text field for which editing ended.
The reason that editing ended.
- Attributes