Represents value that already been formatted, validated and masked.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.CategoryAttribute("Data")>
<ISNet.PersistLayoutAttribute(False)>
<ISNet.Serialization.XmlSerializableAttribute(True)>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DescriptionAttribute("Represents value that already been formatted, validated and masked.")>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
Public Property Text As System.String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.String
instance.Text = value
value = instance.Text |
C# | |
---|
[System.ComponentModel.CategoryAttribute("Data")]
[ISNet.PersistLayoutAttribute(false)]
[ISNet.Serialization.XmlSerializableAttribute(true)]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Represents value that already been formatted, validated and masked.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public System.string Text {get; set;} |
Delphi | |
---|
public read-write property Text: System.String; |
JScript | |
---|
System.ComponentModel.CategoryAttribute("Data")
ISNet.PersistLayoutAttribute()
ISNet.Serialization.XmlSerializableAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DescriptionAttribute("Represents value that already been formatted, validated and masked.")
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
public function get,set Text : System.String |
Managed Extensions for C++ | |
---|
[System.ComponentModel.CategoryAttribute("Data")]
[ISNet.PersistLayoutAttribute(false)]
[ISNet.Serialization.XmlSerializableAttribute(true)]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Represents value that already been formatted, validated and masked.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public: __property System.string* get_Text();
public: __property void set_Text(
System.string* value
); |
C++/CLI | |
---|
[System.ComponentModel.CategoryAttribute("Data")]
[ISNet.PersistLayoutAttribute(false)]
[ISNet.Serialization.XmlSerializableAttribute(true)]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Represents value that already been formatted, validated and masked.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public:
property System.String^ Text {
System.String^ get();
void set ( System.String^ 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