Class RedoCommand
Represents the command that performs the redo operation.
Inheritance
System.Object
RedoCommand
Implements
System.Windows.Input.ICommand
Namespace: Syncfusion.Windows.PdfViewer
Assembly: Syncfusion.SfPdfViewer.UWP.dll
Syntax
public class RedoCommand : Object, ICommand
Methods
CanExecute(Object)
Returns a value that indicates whether the redo command can be executed.
Declaration
public bool CanExecute(object parameter)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parameter | The parameter to the command to be executed. |
Returns
Type | Description |
---|---|
System.Boolean | A value tha indicates whether the command can be executed. |
Execute(Object)
Defines the method to be called when the command is invoked.
Declaration
public void Execute(object parameter)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parameter | Data used by the command. If the command does not require data to be passed, this object can be set to null |
Events
CanExecuteChanged
Occurs when the value of CanExecute is changed.
Declaration
public event EventHandler CanExecuteChanged
Event Type
Type | Description |
---|---|
System.EventHandler |
Implements
System.Windows.Input.ICommand