Specifies if selected value can be spinned.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DescriptionAttribute("Specifies if selected value can be spinned.")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DefaultValueAttribute()>
Public Property IsValueSpinnable As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As MaskValidatorInfo
Dim value As System.Boolean
instance.IsValueSpinnable = value
value = instance.IsValueSpinnable |
C# | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Specifies if selected value can be spinned.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public System.bool IsValueSpinnable {get; set;} |
Delphi | |
---|
public read-write property IsValueSpinnable: System.Boolean; |
JScript | |
---|
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DescriptionAttribute("Specifies if selected value can be spinned.")
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DefaultValueAttribute()
public function get,set IsValueSpinnable : System.boolean |
Managed Extensions for C++ | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Specifies if selected value can be spinned.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public: __property System.bool get_IsValueSpinnable();
public: __property void set_IsValueSpinnable(
System.bool value
); |
C++/CLI | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Specifies if selected value can be spinned.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
public:
property System.bool IsValueSpinnable {
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