Description
This .NET enum wraps the PlotToFileCapability ObjectARX enum. It describes the ability of an PlotConfig object to plot to a file.
C#
public enum PlotToFileCapability { NoPlotToFile, PlotToFileAllowed, MustPlotToFile }
Visual Basic
Public Enum PlotToFileCapability NoPlotToFile PlotToFileAllowed MustPlotToFile End Enum
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. |