PdfSetPageNumberCommand.ForceExecute(ICommandUIState) Method
In This Article
Performs a command action regardless of a command state.
Namespace: DevExpress.XtraPdfViewer.Commands
Assembly: DevExpress.XtraPdfViewer.v24.2.dll
NuGet Package: DevExpress.Win.PdfViewer
#Declaration
public override void ForceExecute(
ICommandUIState state
)
#Parameters
Name | Type | Description |
---|---|---|
state | ICommand |
An object which implements the ICommand |
#Remarks
Call the ForceExecute method to unconditionally trigger a command’s execution.
To avoid arbitrary execution of commands, use the Command.Execute method that automatically evaluates whether or not the command is applicable in the current context of the application user interface.
See Also