Class FindResult
Represents a class containing information about matches when searching.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.TextSearch
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class FindResult
Properties
FullMatchText
Gets the matched text.
Declaration
public string FullMatchText { get; }
Property Value
System.String
|
RelativeEndIndex
Gets the index of the last character in the searched text inside the last Run.
Declaration
public int RelativeEndIndex { get; }
Property Value
System.Int32
|
RelativeStartIndex
Gets the index of the first character in the searched text inside the first Run.
Declaration
public int RelativeStartIndex { get; }
Property Value
System.Int32
|
Runs
Gets a collection of Runs that contains the searched text.
Declaration
public ReadOnlyCollection<Run> Runs { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<Run>
|