LuciadRIA (2026.0.05)
    Preparing search index...

    An object literal describing the configuration of the parallel line pattern.

    interface ParallelLinePatternOptions {
        length?: number;
        line?: OutlinePatternOptions;
        offset?: number;
        relative?: boolean;
    }

    Properties

    length?: number

    The length of the parallel line. relative determines what the unit of this length is.

    10
    

    An object that describes the outline of the parallel line. If no line color is set, the pattern will be painted with a 1-pixel black outline.

    offset?: number

    Sets the offset of the segment, relative to the base line.

    0
    
    relative?: boolean

    If set to true, length is interpreted as a value ([0, 1]) relative to the length of the entire line. Otherwise, length is interpreted as a length in pixels.

    false