Description
This .NET class wraps the AcPlPlotFactory::ProcessPlotState ObjectARX class. It assigns values that describe the current plot process.
C#
public enum ProcessPlotState { NotPlotting, ForegroundPlotting, BackgroundPlotting }
Visual Basic
Public Enum ProcessPlotState NotPlotting ForegroundPlotting BackgroundPlotting End Enum
Members
Members | Description |
---|---|
NotPlotting | No plot is in progress. |
ForegroundPlotting | Plot is in progress in the current process. |
BackgroundPlotting | Plot is in progress in a background process; this process is the foreground process. |