NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UpDownBase.UserEdit

Gets or sets a value indicating whether a value has been entered by the user.

[Visual Basic]
Protected Property UserEdit As Boolean
[C#]
protected bool UserEdit {get; set;}
[C++]
protected: __property bool get_UserEdit();
protected: __property void set_UserEdit(bool);
[JScript]
protected function get UserEdit() : Boolean;
protected function set UserEdit(Boolean);

Property Value

true if the user has changed the Text property; otherwise, false.

Remarks

If the Text property is set while the UserEdit property is set to true, the UpdateEditText method is called. If the Text property is set while the UserEdit property is set to false, ValidateEditText is called.

See Also

UpDownBase Class | UpDownBase Members | System.WinForms Namespace | Text | UpdateEditText | ValidateEditText