Intersoft WebInput Documentation
HighLight Property
See Also  Send Feedback
ISNet.WebUI.WebControls Namespace > WebInput Class : HighLight Property






Glossary Item Box

Represents the selection, which is a highlighted block of text. Represents the selection, which is the highlighted block of text.

Syntax

Visual Basic (Declaration) 
<System.ComponentModel.DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)>
<System.Web.UI.PersistenceModeAttribute(PersistenceMode.InnerProperty)>
<System.ComponentModel.DescriptionAttribute("Represents the selection, which is a highlighted block of text.")>
<ISNet.Serialization.XmlSerializableAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
Public Property HighLight As HighLight
Visual Basic (Usage)Copy Code
Dim instance As WebInput
Dim value As HighLight
 
instance.HighLight = value
 
value = instance.HighLight
C# 
[System.ComponentModel.DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
[System.Web.UI.PersistenceModeAttribute(PersistenceMode.InnerProperty)]
[System.ComponentModel.DescriptionAttribute("Represents the selection, which is a highlighted block of text.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
public HighLight HighLight {get; set;}
Delphi 
public read-write property HighLight: HighLight; 
JScript 
System.ComponentModel.DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)
System.Web.UI.PersistenceModeAttribute(PersistenceMode.InnerProperty)
System.ComponentModel.DescriptionAttribute("Represents the selection, which is a highlighted block of text.")
ISNet.Serialization.XmlSerializableAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.NotifyParentPropertyAttribute()
public function get,set HighLight : HighLight
Managed Extensions for C++ 
[System.ComponentModel.DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
[System.Web.UI.PersistenceModeAttribute(PersistenceMode.InnerProperty)]
[System.ComponentModel.DescriptionAttribute("Represents the selection, which is a highlighted block of text.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
public: __property HighLight* get_HighLight();
public: __property void set_HighLight( 
   HighLight* value
);
C++/CLI 
[System.ComponentModel.DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
[System.Web.UI.PersistenceModeAttribute(PersistenceMode.InnerProperty)]
[System.ComponentModel.DescriptionAttribute("Represents the selection, which is a highlighted block of text.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
public:
property HighLight^ HighLight {
   HighLight^ get();
   void set (    HighLight^ value);
}

Remarks

Using HighLight, you can select and highlight specific edit value (whether it is a character, a phrase or a word), edit the value, and spin it. Default behavior of highlight is replacing selected value with new typed value.

There are 3 types of highlight :

  • Character - Default value, highlight a character.
  • Phrase - Highlight a collection of characters terminated by a specific literal (literal: A value used exactly as you see it. For example, the number 25 and the string "Hello" are both literals. You can use literals in expressions, and you can assign literals to constants or variables.) character (used by Masking feature).
  • Word - Highlight a collection of character terminated by a space or another white-space character, such as a tab.

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

© 2013 Intersoft Solutions Corp. All Rights Reserved.