Share

Autodesk.AutoCAD.PlottingServices.PreviewEngineFlags Enumeration

Description

This .NET class wraps the AcPlPlotFactory::PreviewEngineFlags ObjectARX class. It describes the plot preview functionality.

Visual Basic

Public Enum PreviewEngineFlags
  NextSheet = 2
  Plot = 1
  PreviousSheet = 4
End Enum

C#

public enum PreviewEngineFlags {
  NextSheet = 2,
  Plot = 1,
  PreviousSheet = 4
}

Members

Members Description
NextSheet = 2 Allows "Next Sheet" from preview state.
Plot = 1 Allows plot from preview state.
PreviousSheet = 4 Allows "Previous Sheet" from preview state.

Was this information helpful?