Specifies the behavior mode of the text box.
Specifies the behavior mode of the text box.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.CategoryAttribute("Layout")>
<System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DefaultValueAttribute()>
Public Property Wrap As WrapType |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As WrapType
instance.Wrap = value
value = instance.Wrap |
C# | |
---|
[System.ComponentModel.CategoryAttribute("Layout")]
[System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public WrapType Wrap {get; set;} |
Delphi | |
---|
public read-write property Wrap: WrapType; |
JScript | |
---|
System.ComponentModel.CategoryAttribute("Layout")
System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DefaultValueAttribute()
public function get,set Wrap : WrapType |
Managed Extensions for C++ | |
---|
[System.ComponentModel.CategoryAttribute("Layout")]
[System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public: __property WrapType get_Wrap();
public: __property void set_Wrap(
WrapType value
); |
C++/CLI | |
---|
[System.ComponentModel.CategoryAttribute("Layout")]
[System.ComponentModel.DescriptionAttribute("Specifies the behavior mode of the text box.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public:
property WrapType Wrap {
WrapType get();
void set ( WrapType value);
} |
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