Description
This .NET enum wraps the PlotProgress::SheetCancelStatus ObjectARX enum. It defines the sheet cancel states in a single-sheet plotting scenario.
C#
public enum SheetCancelStatus { Continue, CanceledByCancelButton, CanceledByCancelAllButton, CanceledByCaller }
Visual Basic
Public Enum SheetCancelStatus Continue CanceledByCancelButton CanceledByCancelAllButton CanceledByCaller End Enum
Members
| Members | Description |
|---|---|
| Continue | The current sheet plotting process is set to continue its plotting operation. |
| CanceledByCancelButton | The user canceled the current sheet being plotted using the UI option. |
| CanceledByCancelAllButton | The user canceled the entire plotting process using the UI option. That is, all the sheets pending to be plotted in the current plot job process will be canceled. |
| CanceledByCaller | The plotting of a sheet was canceled by the plot pipeline. |