New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines the available settings for the selection operation in RadPdfViewer.

Definition

Namespace:Telerik.Maui.Controls.PdfViewer

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class PdfViewerSelectionSettings : StyleableElement

Inheritance: objectPdfViewerSelectionSettings

Constructors

C#
public PdfViewerSelectionSettings()

Fields

Identifies the IsSelectionEnabled property.

C#
public static readonly BindableProperty IsSelectionEnabledProperty

MenuItemsProperty

BindableProperty

Identifies the MenuItems property.

C#
public static readonly BindableProperty MenuItemsProperty

SelectionFillProperty

BindableProperty

Identifies the SelectionFill property.

C#
public static readonly BindableProperty SelectionFillProperty

Identifies the SelectionIndicatorColor property.

C#
public static readonly BindableProperty SelectionIndicatorColorProperty

Identifies the SelectionMenuControlTemplate property.

C#
public static readonly BindableProperty SelectionMenuControlTemplateProperty

Properties

Gets or sets a boolean value, indicating if the selection operation is enabled in RadPdfViewer.

C#
public bool IsSelectionEnabled { get; set; }

Gets or sets a collection of menu items that are displayed in the SelectionMenu that is shown when there is visible selection in the PdfViewer.

C#
public PdfViewerSelectionMenuItemCollection MenuItems { get; set; }

Gets the instance of the RadPdfViewer, associated with the object.

C#
public RadPdfViewer PdfViewer { get; }

Gets or sets the Color used to designate the selection within the RadPdfViewer.

C#
public Color SelectionFill { get; set; }

Gets or sets the Color used to designate the selection indicators.

C#
public Color SelectionIndicatorColor { get; set; }

Gets or sets the ControlTemplate of the PdfViewerSelectionMenu that is used to display the MenuItems items.

C#
public ControlTemplate SelectionMenuControlTemplate { get; set; }