Indicates if empty strings within control are interpreted as null values.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Indicates if empty strings within control are interpreted as null values.")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DefaultValueAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.CategoryAttribute("Behavior")>
Public Property EmptyAsNull As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.Boolean
instance.EmptyAsNull = value
value = instance.EmptyAsNull |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Indicates if empty strings within control are interpreted as null values.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Behavior")]
public System.bool EmptyAsNull {get; set;} |
Delphi | |
---|
public read-write property EmptyAsNull: System.Boolean; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Indicates if empty strings within control are interpreted as null values.")
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DefaultValueAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.CategoryAttribute("Behavior")
public function get,set EmptyAsNull : System.boolean |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Indicates if empty strings within control are interpreted as null values.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Behavior")]
public: __property System.bool get_EmptyAsNull();
public: __property void set_EmptyAsNull(
System.bool value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Indicates if empty strings within control are interpreted as null values.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.CategoryAttribute("Behavior")]
public:
property System.bool EmptyAsNull {
System.bool get();
void set ( System.bool value);
} |
Property Value
The default is true.
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