Table of Contents

Enum LlProjectParameterFlag

Namespace
combit.Reporting
Assembly
combit.ListLabel31.CrossPlatform.dll

Flags describing attributes of a project parameter (visibility, scope, storage behavior and category).

[Flags]
public enum LlProjectParameterFlag

Fields

Fax = 1

Parameter belongs to fax configuration.

Formula = 0

Parameter represents a formula (expression is evaluated).

Global = 0

Parameter has global scope (available project-wide).

Internal = 4

Internal parameter (reserved for system usage).

Local = 268435456

Parameter has local scope (restricted to a specific context).

Mail = 2

Parameter belongs to mail configuration.

Private = 1073741824

Parameter is private (hidden / restricted usage).

Public = 0

Parameter is public (default). Visible and editable where appropriate.

SaveDefault = 65536

Persist parameter even if it equals its default value.

User = 0

User-defined parameter (default category).

Value = 536870912

Parameter stores a literal value (no expression evaluation).

Remarks

Multiple flags can be combined. Some groups are mutually exclusive (e.g. Public vs Private). Flags with value 0 (like Public, Formula, Global, User) represent defaults.