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

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

Visual Basic (Declaration)
Protected Property UserEdit As Boolean
Visual Basic (Usage)
Dim value As Boolean

value = Me.UserEdit

Me.UserEdit = value
C#
protected bool UserEdit { get; set; }
C++
protected:
property bool UserEdit {
    bool get ();
    void set (bool value);
}
J#
/** @property */
protected boolean get_UserEdit ()

/** @property */
protected void set_UserEdit (boolean value)
JScript
protected function get UserEdit () : boolean

protected function set UserEdit (value : boolean)
XAML
Not applicable.

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, the ValidateEditText method is called.

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0
See Also

Tags :


Page view tracker