Skip to main content

PdfViewerCommand.ForceExecute(ICommandUIState) Method

Forces the application user interface to ignore the current applicability of a command, and trigger its execution despite the risks.

Namespace: DevExpress.XtraPdfViewer.Commands

Assembly: DevExpress.XtraPdfViewer.v23.2.dll

NuGet Package: DevExpress.Win.PdfViewer

Declaration

public override void ForceExecute(
    ICommandUIState state
)

Parameters

Name Type Description
state ICommandUIState

An object implementing the ICommandUIState interface that defines the current status of a command in the overall context of the application user interface.

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