Share

PreviewStatus

C++

enum PreviewStatus {
  kNormal = 0,
  kPlot,
  kCancel,
  kNext,
  kPrevious
};

File

AcPlPlotEngine.h

Members

Members Description
kNormal The preview has terminated normally, and the user has not requested a plot operation directly from the plot preview user interface.
kPlot The preview has terminated normally, and the user has requested a plot operation directly from the preview user interface. Client applications should proceed with a plot using the same AcPlPlotInfo object that was used to generate the preview.
kCancel The preview has terminated abnormally. The user or the host application has requested that the entire plotting operation be terminated and control should be returned to the host application. (For example, if the preview occurred because of a custom AutoCAD command, the command should be terminated and control returned to AutoCAD.)
kNext The user has exited the preview state by clicking on the Next Sheet preview state toolbar button.
kPrevious The user has exited the preview state by clicking on the Previous Sheet preview state toolbar button.

Description

Status values for ACPL_PREVIEWENDPLOT.

Was this information helpful?