Autodesk.AutoCAD.PlottingServices Namespace > SheetType Enumeration
Autodesk.AutoCAD.PlottingServices.SheetType Enumeration   
Description

 

This .NET enum wraps the AcPlDSDEntry::SheetType ObjectARX enum. It represents the type of sheet (multi sheet or single sheet).

Visual Basic
Public Enum SheetType
  SingleDwf
  MultiDwf
  OriginalDevice
  SingleDwfx
  MultiDwfx
  SinglePdf
  MultiPdf
End Enum
C#
public enum SheetType {
  SingleDwf,
  MultiDwf,
  OriginalDevice,
  SingleDwfx,
  MultiDwfx,
  SinglePdf,
  MultiPdf
}
Members
Members 
Description 
SingleDwf 
Each sheet will be plotted to an individual DWF file. 
MultiDwf 
All the sheets will be aggregated into a multi-sheet DWF file. 
OriginalDevice 
The sheets will be plotted to the original device configured in the layout. 
SingleDwfx 
All the sheets will be aggregated into a multi-sheet DWFx file. 
MultiDwfx 
All the sheets will be aggregated into a multi-sheet DWFx file. 
   Comments?