combit List & Label 29 - .NET Help
combit.Reporting Namespace / ViewerActionResultEventArgs Class / Parameters Property


In This Topic
    Parameters Property (ViewerActionResultEventArgs)
    In This Topic

    Dictionary of parameters with detailed information on the result of the action.

    Syntax
    'Declaration
     
    
    Public ReadOnly Property Parameters As Dictionary(Of String,String)
    public Dictionary<string,string> Parameters {get;}
    public:
    property Dictionary<String^,String^>^ Parameters {
       Dictionary<String^,String^>^ get();
    }
    Remarks

    The keys of this dictionary contain the name of the information and the values contains their values. A list of the information contained in the dictionary can be found here.

     

    List of additional information for action LlViewerAction.SendTo:

    Key (name of the information) Value
    Provider Contains the used email Provider - e.g. SMTP
    FilenameList Semicolon separated list of the included attachments
    Recipient.To Semicolon separated list of the recipients
    Recipient.CC Semicolon separated list of the CC recipients
    Recipient.BCC Semicolon separated list of the BCC recipients

     

    List of additional information for action LlViewerAction.Fax:

    Key (name of the information) Value
    PageRange Selected page range
    Copies.ABCABCABC Number of collated copies
    Copies.AAABBBCCC Number of paged copies
    PagesWithEmptyFaxNumbers Number of pages without a fax number
    FaxNumberList Semicolon separated list of the fax numbers

     

    List of additional information for action LlViewerAction.SaveAs:

    Key (name of the information) Value
    Format

    Contains the selected format in short form, possible values are:

    XML
    XFDF
    PDF
    LL
    LLDATA
    TIFF
    JPEG
    PNG
    EMF

    Hint: Additional export parameters may also be included as semicolon separated list. Example: "PDF;PDF.Encryption.EncryptFile=1".

    FilenameList Semicolon separated list of the exported files

     

    All other actions contain the same additional information:

    Key (name of the information) Value
    Storage Name of the storage/preview file
    Result Numeric value which indicates success (0 = Ok) or any kind of known error codes (see LlError Enumeration)
    LastError Contains the detailed error text if the result is not 0

     

    Requirements

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

    See Also