Interface for label classes in CIM.

interface LpkxCimLabelClass {
    expression?: string;
    maxScale?: number;
    minScale?: number;
    textSymbol?: {
        symbol: LpkxCimTextSymbol;
    };
    whereClause?: string;
}

Properties

expression?: string

The label expression.

maxScale?: number

The maximum scale at which labels are visible.

minScale?: number

The minimum scale at which labels are visible.

textSymbol?: {
    symbol: LpkxCimTextSymbol;
}

The text symbol used for labeling.

whereClause?: string

The SQL where clause to filter labels.