combit List & Label 29 - .NET Help
combit.Reporting Namespace / LlProjectParameterType Enumeration


In This Topic
    LlProjectParameterType Enumeration
    In This Topic
    Enumeration of all possible types for project parameters. For further information see the ParameterType Property.
    Syntax
    'Declaration
     
    
    Public Enum LlProjectParameterType 
       Inherits System.Enum
    public enum LlProjectParameterType : System.Enum 
    public enum class LlProjectParameterType : public System.Enum 
    Members
    MemberDescription
    Formula

    Default for new project parameters.

    The project parameter contains a formula that is evaluated at print time.

    ValueThe project parameter contains a fixed value.
    Remarks

    If 'Formula' is set as project parameter type but a fixed value is to be used instead of a formula (e.g. an e-mail address is passed for the predefined project parameter "LL.MAIL.To" which is defined as 'Formula') then you have to mask the passed value as a string.

    Example:

    LL.ProjectParameters[LlProjectParameter.MailTo].Value = "\"info@combit.net\"";

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             combit.Reporting.LlProjectParameterType

    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