PdfViewerCommand
Represents an abstract base class for commands that can be executed on a RadPdfViewer control.
Definition
Namespace:Telerik.Maui.Controls.PdfViewer
Assembly:Telerik.Maui.Controls.dll
Syntax:
public abstract class PdfViewerCommand : NotifyPropertyChangedBase, INotifyPropertyChanged, ICommand
Inheritance: objectNotifyPropertyChangedBasePdfViewerCommand
Derived Classes:
Implements:
Inherited Members
Constructors
protected PdfViewerCommand()
Properties
Gets the RadPdfViewer control that this command is associated with.
public RadPdfViewer PdfViewer { get; }
Methods
Defines the method that determines whether the command can execute in its current state.
Defines the method to be called when the command is invoked.
public abstract void Execute(object parameter)
Data used by the command. If the command does not require data to be passed, this object can be set to null.
Implements:
Raises the CanExecuteChanged event to notify that the command's execution state has changed.
public void RaiseCanExecuteChanged()
Events
Occurs when changes occur that affect whether or not the command should execute.
public event EventHandler CanExecuteChanged
Implements: