Autodesk.AutoCAD.PlottingServices Namespace > PreviewEndPlotStatus Enumeration
Autodesk.AutoCAD.PlottingServices.PreviewEndPlotStatus Enumeration
Description

 

This enumeration wraps the PreviewStatus ObjectARX enum. It gives the status values for ACPL_PREVIEWENDPLOT.

Visual Basic
Public Enum PreviewEndPlotStatus
  Normal
  Plot
  Cancel
  Next
  Previous
End Enum
C#
public enum PreviewEndPlotStatus {
  Normal,
  Plot,
  Cancel,
  Next,
  Previous
}
Members
Members 
Description 
Normal 
The preview has terminated normally, and the user has not requested a plot operation directly from the plot preview user interface. 
Plot 
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 PlotInfo object that was used to generate the preview. 
Cancel 
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). 
Next 
The user has exited the preview state by clicking on the Next Sheet preview state toolbar button. 
Previous 
The user has exited the preview state by clicking on the Previous Sheet preview state toolbar button. 
   Comments?