Indicates whether HighLight selects a character, a phrase or a word.
Indicates whether HighLight selects a character, a phrase or a word.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DefaultValueAttribute()>
<System.ComponentModel.DescriptionAttribute("Indicates whether HighLight selects a character, a phrase or a word.")>
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
<ISNet.Serialization.BinarySerializableAttribute()>
<ISNet.Serialization.XmlSerializableAttribute(True)>
Public Property Type As HighLightType |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As HighLight
Dim value As HighLightType
instance.Type = value
value = instance.Type |
C# | |
---|
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.DescriptionAttribute("Indicates whether HighLight selects a character, a phrase or a word.")]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(true)]
public HighLightType Type {get; set;} |
JScript | |
---|
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DefaultValueAttribute()
System.ComponentModel.DescriptionAttribute("Indicates whether HighLight selects a character, a phrase or a word.")
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
ISNet.Serialization.BinarySerializableAttribute()
ISNet.Serialization.XmlSerializableAttribute()
public function get,set Type : HighLightType |
Managed Extensions for C++ | |
---|
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.DescriptionAttribute("Indicates whether HighLight selects a character, a phrase or a word.")]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(true)]
public: __property HighLightType get_Type();
public: __property void set_Type(
HighLightType value
); |
C++/CLI | |
---|
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DefaultValueAttribute()]
[System.ComponentModel.DescriptionAttribute("Indicates whether HighLight selects a character, a phrase or a word.")]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(true)]
public:
property HighLightType Type {
HighLightType get();
void set ( HighLightType value);
} |
Property Value
One of the
HighLightType enumeration values that specifies whether HighLight selects a character, a phrase or a word. The default is HighLightType.Character
Remarks
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