Class FileDownloadBase
Define how a page of a document can be downloaded
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public abstract class FileDownloadBase : object
Constructors
FileDownloadBase()
Creates a new instance of this class
Declaration
public FileDownloadBase()
Properties
KeepAnnotations
If this flag is true then the annotations are rendered in the PDF file, otherwise the annotations are removed.
Declaration
public bool KeepAnnotations { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
This flag applies only to the PDF target format.
Layers
Specifies the annotation layers to be included in the output file.
Declaration
public List<int> Layers { get; set; }
Property Value
Type | Description |
---|---|
List<System.Int32> |
Remarks
This list is used only when KeepAnnotations flag is set to true; if this flag is set to false, then this list is ignored and no layers are included. In order to keep all layers, just set KeepAnnotations to true and pass an empty list or do not specify a list at all.