Description
This .NET enum wraps the PlotToFileCapability ObjectARX enum. It describes the ability of an PlotConfig object to plot to a file.
Visual Basic
Public Enum PlotToFileCapability NoPlotToFile PlotToFileAllowed MustPlotToFile End Enum
C#
public enum PlotToFileCapability { NoPlotToFile, PlotToFileAllowed, MustPlotToFile }
Members
| Members | Description |
|---|---|
| NoPlotToFile | The device does not support plotting to a file. PlotConfig.IsPlotToFile always returns false. |
| PlotToFileAllowed | The device supports plotting to a file. PlotConfig.IsPlotToFile and PlotConfig.setPlotToFile() may be used to change the current device configuration. |
| MustPlotToFile | The device supports plotting only to a file. PlotConfig.IsPlotToFile always returns true. |