Specifies if selected control value is default editor value and selected editor value assigned to selected control value when HighLight is enabled.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
<System.ComponentModel.DefaultValueAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<ISNet.Serialization.BinarySerializableAttribute()>
<ISNet.Serialization.XmlSerializableAttribute(True)>
<System.ComponentModel.DescriptionAttribute("Specifies if selected control value is default editor value and selected editor value assigned to selected control value when HighLight is enabled.")>
Public Property IsCollaborateWithHighLight As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As CalculatorEditor
Dim value As System.Boolean
instance.IsCollaborateWithHighLight = value
value = instance.IsCollaborateWithHighLight |
C# | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies if selected control value is default editor value and selected editor value assigned to selected control value when HighLight is enabled.")]
public System.bool IsCollaborateWithHighLight {get; set;} |
Delphi | |
---|
public read-write property IsCollaborateWithHighLight: System.Boolean; |
JScript | |
---|
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
System.ComponentModel.DefaultValueAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
ISNet.Serialization.BinarySerializableAttribute()
ISNet.Serialization.XmlSerializableAttribute()
System.ComponentModel.DescriptionAttribute("Specifies if selected control value is default editor value and selected editor value assigned to selected control value when HighLight is enabled.")
public function get,set IsCollaborateWithHighLight : System.boolean |
Managed Extensions for C++ | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies if selected control value is default editor value and selected editor value assigned to selected control value when HighLight is enabled.")]
public: __property System.bool get_IsCollaborateWithHighLight();
public: __property void set_IsCollaborateWithHighLight(
System.bool value
); |
C++/CLI | |
---|
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies if selected control value is default editor value and selected editor value assigned to selected control value when HighLight is enabled.")]
public:
property System.bool IsCollaborateWithHighLight {
System.bool get();
void set ( System.bool value);
} |
Property Value
true
if the collaborate with highlight is enabled; otherwise false. 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