ClassPdfViewerCommand
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
PdfViewerCommand()
Declaration
protected PdfViewerCommand()
Properties
PdfViewer
Gets the RadPdfViewer control that this command is associated with.
Methods
CanExecute(object)
Defines the method that determines whether the command can execute in its current state.
Execute(object)
Defines the method to be called when the command is invoked.
Declaration
public abstract void Execute(object parameter)
Parameters
parameter
Data used by the command. If the command does not require data to be passed, this object can be set to null.
Implements
RaiseCanExecuteChanged()
Raises the CanExecuteChanged event to notify that the command's execution state has changed.
Declaration
public void RaiseCanExecuteChanged()
Events
CanExecuteChanged
Occurs when changes occur that affect whether or not the command should execute.
Declaration
public event EventHandler CanExecuteChanged
Event Value
Implements