Class SearchSettings
Inheritance
Namespace: Telerik.XamarinForms.PdfViewer
Assembly: Telerik.XamarinForms.PdfViewer.dll
Syntax
public class SearchSettings : BindableObject
Constructors
SearchSettings()
Declaration
public SearchSettings()
Fields
IsBusyProperty
Declaration
public static readonly BindableProperty IsBusyProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
MainSearchResultFillProperty
Declaration
public static readonly BindableProperty MainSearchResultFillProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
NavigateToNextSearchResultCommandProperty
NavigateToPreviousSearchResultCommandProperty
SearchOptionsProperty
Declaration
public static readonly BindableProperty SearchOptionsProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
SearchResultProperty
Declaration
public static readonly BindableProperty SearchResultProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
SearchResultsFillProperty
Declaration
public static readonly BindableProperty SearchResultsFillProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
TextProperty
Declaration
public static readonly BindableProperty TextProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
TextSearchWorkerProperty
Declaration
public static readonly BindableProperty TextSearchWorkerProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
Properties
IsBusy
Gets a value indicating whether or not a search operation is in progress.
Declaration
public bool IsBusy { get; }
Property Value
|
System.Boolean
|
MainSearchResultFill
Gets or sets the fill of the main search result.
Declaration
public Color MainSearchResultFill { get; set; }
Property Value
|
Xamarin.Forms.Color
|
NavigateToNextSearchResultCommand
NavigateToPreviousSearchResultCommand
PdfViewer
SearchOptions
Declaration
public TextSearchOptions SearchOptions { get; set; }
Property Value
|
Telerik.Windows.Documents.Fixed.Search.TextSearchOptions
|
SearchResultsFill
Gets or sets the fill of all search results, except the main result.
Declaration
public Color SearchResultsFill { get; set; }
Property Value
|
Xamarin.Forms.Color
|
Text
Declaration
public string Text { get; set; }
Property Value
|
System.String
|
TextSearchResult
Gets a value representing the current search result. This property contains all the results that are found and the main result. The value of this property is null when no search was performed. The value of this property is NotFound when no results are found.
Declaration
public TextSearchResult TextSearchResult { get; }
Property Value
|
TextSearchResult
|
TextSearchWorker
The object that performs the text search and notifies for the search progress changes.
Declaration
public TextSearchWorker TextSearchWorker { get; set; }
Property Value
|
TextSearchWorker
|
Methods
CancelSearch()
Cancels the search operation.
Declaration
public void CancelSearch()
OnPropertyChanged(String)
Declaration
protected override void OnPropertyChanged(string propertyName = null)
Parameters
|
System.String
propertyName
|
SearchAsync(String, TextSearchOptions)
Starts an async search operation with the provided text and options. For finer control use the TextSearchWorker property.
Declaration
public void SearchAsync(string text, TextSearchOptions searchOptions = null)
Parameters
|
System.String
text
|
|
Telerik.Windows.Documents.Fixed.Search.TextSearchOptions
searchOptions
|