Skip to main content

PdfSetZoomCommand.ForceExecute(ICommandUIState) Method

Performs a command action regardless of a command state.

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 which implements the ICommandUIState 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