This .NET enum wraps the AcPlDSDEntry::SheetType ObjectARX enum. It represents the type of sheet (multi sheet or single sheet).
Public Enum SheetType SingleDwf MultiDwf OriginalDevice SingleDwfx MultiDwfx SinglePdf MultiPdf End Enum
public enum SheetType { SingleDwf, MultiDwf, OriginalDevice, SingleDwfx, MultiDwfx, SinglePdf, MultiPdf }
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? |