combit List & Label 30 - .NET Help
combit.Reporting Namespace / ListLabel Class / ExportOptions Property


ExportOptions Property (ListLabel)

Specify various export options here. These must be defined before the print/export call - see also LlExportOption for a list of options. 

Syntax
'Declaration
 
Public Property ExportOptions As ListLabelExportOptions
 
Remarks

An Export() method is also available, which simplifies exporting with the help of ExportConfiguration.

Example
...
LL.ExportOptions.Add(LlExportOption.ExportTarget, "PDF");
LL.ExportOptions.Add(LlExportOption.ExportFile, "test.pdf");
LL.ExportOptions.Add(LlExportOption.ExportPath, @"c:\temp\");
LL.ExportOptions.Add(LlExportOption.ExportQuiet, "1");
...
Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also