Class IgbHighlightingInfo
Contains contextual information about a highlighting.
Inheritance
System.Object
IgbHighlightingInfo
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbHighlightingInfo : BaseRendererElement, JsonSerializable
Constructors
IgbHighlightingInfo()
Declaration
public IgbHighlightingInfo()
Properties
Context
Declaration
public object Context { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
ContextScript
Declaration
public string ContextScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
EndIndex
The index of the last highlighted item.
Declaration
public int EndIndex { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
IsExclusive
Declaration
public bool IsExclusive { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
IsFullRange
True if this HighlightingInfo represents a full selection of the data.
Declaration
public bool IsFullRange { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
IsMarker
True if this HighlightingInfo represents a marker highlighting.
Declaration
public bool IsMarker { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Progress
A number between 0 and 1 representing the progress of the highlighting.
Declaration
public double Progress { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
StartIndex
The index of the first highlighted item.
Declaration
public int StartIndex { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
State
The state of the highlighting.
Declaration
public HighlightingState State { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Implements