Class ExportConfiguration
- Namespace
- combit.Reporting
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents the configuration settings used when exporting a project.
public sealed class ExportConfiguration
- Inheritance
-
ExportConfiguration
- Inherited Members
Constructors
ExportConfiguration(LlExportTarget, Stream, Stream)
Initializes a new instance of the ExportConfiguration class using export and project file streams.
public ExportConfiguration(LlExportTarget exportTarget, Stream exportStream, Stream projectFileStream)
Parameters
exportTargetLlExportTargetThe export target type.
exportStreamStreamThe stream used for exporting the project.
projectFileStreamStreamThe stream representing the project file.
ExportConfiguration(LlExportTarget, Stream, string)
Initializes a new instance of the ExportConfiguration class using an export stream and a file-based project.
public ExportConfiguration(LlExportTarget exportTarget, Stream exportStream, string projectFile)
Parameters
exportTargetLlExportTargetThe export target type.
exportStreamStreamThe stream used for exporting the project.
projectFilestringThe project file name or path.
ExportConfiguration(LlExportTarget, string, Stream)
Initializes a new instance of the ExportConfiguration class using a stream-based project file.
public ExportConfiguration(LlExportTarget exportTarget, string path, Stream projectFileStream)
Parameters
exportTargetLlExportTargetThe export target type.
pathstringThe export path.
projectFileStreamStreamThe stream representing the project file.
ExportConfiguration(LlExportTarget, string, string)
Initializes a new instance of the ExportConfiguration class using a file-based project.
public ExportConfiguration(LlExportTarget exportTarget, string path, string projectFile)
Parameters
exportTargetLlExportTargetThe export target type.
pathstringThe export path.
projectFilestringThe project file name or path.
Properties
ExportOptions
Gets or sets additional export options for List & Label.
public ListLabelExportOptions ExportOptions { get; set; }
Property Value
ExportStream
Gets or sets the stream used for exporting the project.
public Stream ExportStream { get; set; }
Property Value
ExportTarget
Gets or sets the target export type.
public LlExportTarget ExportTarget { get; set; }
Property Value
Path
Gets or sets the file path where the export is saved.
public string Path { get; set; }
Property Value
ProjectFile
Gets or sets the file path of the project file.
public string ProjectFile { get; set; }
Property Value
ProjectFileStream
Gets or sets the stream representing the project file.
public Stream ProjectFileStream { get; set; }
Property Value
ProjectType
Gets or sets the ProjectType of the project.
public LlProject ProjectType { get; set; }
Property Value
ShowResult
Gets or sets a value indicating whether the result should be opened after exporting.
public bool ShowResult { get; set; }