Class TextMapItem
Represents an item in the text map used for searching within documents.
Inheritance
Namespace: Telerik.Windows.Documents.TextSearch
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class TextMapItem : Object
Constructors
TextMapItem(Int32, SpanLayoutBox, Int32)
Declaration
public TextMapItem(int index, SpanLayoutBox spanBox, int length)
Parameters
System.Int32
index
|
SpanLayoutBox
spanBox
|
System.Int32
length
|
Properties
Index
Gets the index of the text map item within the collection.
Declaration
public int Index { get; set; }
Property Value
System.Int32
The zero-based index of the text map item. |
Length
Gets the length of the text map item.
Declaration
public int Length { get; set; }
Property Value
System.Int32
The length of the text map item represented as an integer. |
SpanBox
Gets the bounding box of the text span as a rectangle in the document coordinates.
Declaration
public SpanLayoutBox SpanBox { get; set; }
Property Value
SpanLayoutBox
|