Table of Contents

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

exportTarget LlExportTarget

The export target type.

exportStream Stream

The stream used for exporting the project.

projectFileStream Stream

The 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

exportTarget LlExportTarget

The export target type.

exportStream Stream

The stream used for exporting the project.

projectFile string

The 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

exportTarget LlExportTarget

The export target type.

path string

The export path.

projectFileStream Stream

The 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

exportTarget LlExportTarget

The export target type.

path string

The export path.

projectFile string

The project file name or path.

Properties

ExportOptions

Gets or sets additional export options for List & Label.

public ListLabelExportOptions ExportOptions { get; set; }

Property Value

ListLabelExportOptions

ExportStream

Gets or sets the stream used for exporting the project.

public Stream ExportStream { get; set; }

Property Value

Stream

ExportTarget

Gets or sets the target export type.

public LlExportTarget ExportTarget { get; set; }

Property Value

LlExportTarget

Path

Gets or sets the file path where the export is saved.

public string Path { get; set; }

Property Value

string

ProjectFile

Gets or sets the file path of the project file.

public string ProjectFile { get; set; }

Property Value

string

ProjectFileStream

Gets or sets the stream representing the project file.

public Stream ProjectFileStream { get; set; }

Property Value

Stream

ProjectType

Gets or sets the ProjectType of the project.

public LlProject ProjectType { get; set; }

Property Value

LlProject

ShowResult

Gets or sets a value indicating whether the result should be opened after exporting.

public bool ShowResult { get; set; }

Property Value

bool