Specifies the behavior mode of the text box.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.CategoryAttribute("Behavior")>
<System.ComponentModel.DefaultValueAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")>
Public Property TextMode As System.Web.UI.WebControls.TextBoxMode |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.Web.UI.WebControls.TextBoxMode
instance.TextMode = value
value = instance.TextMode |
C# | |
---|
[System.ComponentModel.CategoryAttribute("Behavior")]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")]
public System.Web.UI.WebControls.TextBoxMode TextMode {get; set;} |
Delphi | |
---|
public read-write property TextMode: System.Web.UI.WebControls.TextBoxMode; |
JScript | |
---|
System.ComponentModel.CategoryAttribute("Behavior")
System.ComponentModel.DefaultValueAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")
public function get,set TextMode : System.Web.UI.WebControls.TextBoxMode |
Managed Extensions for C++ | |
---|
[System.ComponentModel.CategoryAttribute("Behavior")]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")]
public: __property System.Web.UI.WebControls.TextBoxMode get_TextMode();
public: __property void set_TextMode(
System.Web.UI.WebControls.TextBoxMode value
); |
C++/CLI | |
---|
[System.ComponentModel.CategoryAttribute("Behavior")]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")]
public:
property System.Web.UI.WebControls.TextBoxMode TextMode {
System.Web.UI.WebControls.TextBoxMode get();
void set ( System.Web.UI.WebControls.TextBoxMode value);
} |
Example
Specifies the behavior mode of the text box.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also