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


In This Topic
    ExportOptions Property (ListLabel)
    In This Topic

    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
    public ListLabelExportOptions ExportOptions {get; set;}
    public:
    property ListLabelExportOptions^ ExportOptions {
       ListLabelExportOptions^ get();
       void set (    ListLabelExportOptions^ value);
    }
    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 - 22H2), Windows 11 (22H2 - 24H2), Windows Server 2016 - 2025
    .NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

    See Also