Represents a DXF line type definition.

interface ILineType {
    description: string;
    name: string;
    pattern: string[];
    patternLength: number;
}

Properties

description: string

Description of the line type.

name: string

Name of the line type.

pattern: string[]

Dash pattern definition.

patternLength: number

Total pattern length.