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

 

This enumeration wraps the AcPlHostAppServices::PlotStatus ObjectARX enum. It signifies the plot state, condition, or results of the plot job.

Visual Basic
Public Enum AppPlotStatus
  DwfFilePlotted = -3
  NoPlotYet = -1
  PlotHadErrors = 3
  PlotHadSystemError = 4
  PlotStart = 0
  PlotSuccessful = 2
  PlottingMessage = -2
  ViewPlotLog = 1
End Enum
C#
public enum AppPlotStatus {
  DwfFilePlotted = -3,
  NoPlotYet = -1,
  PlotHadErrors = 3,
  PlotHadSystemError = 4,
  PlotStart = 0,
  PlotSuccessful = 2,
  PlottingMessage = -2,
  ViewPlotLog = 1
}
Members
Members 
Description 
DwfFilePlotted = -3 
Indicates that a DWF file was plotted successfully. 
NoPlotYet = -1 
Indicates that no attempt has been made to plot during this AutoCAD session. This is the default value on startup and is intended for internal use only. 
PlotHadErrors = 3 
Indicates that the job had plotting errors. 
PlotHadSystemError = 4 
Indicates that the plot job failed due to a system error. 
PlotStart = 0 
Indicates that the plot has started. 
PlotSuccessful = 2 
Indicates that the job was plotted successfully. 
PlottingMessage = -2 
Indicates that there is a plot job message. 
ViewPlotLog = 1 
Indicates that the plot log viewer should be invoked. 
   Comments?