Input payload for one MLINE element in a segment.

interface AcDbMLineElementLike {
    fillCount?: number;
    fillParameters?: number[];
    parameterCount?: number;
    parameters?: number[];
}

Properties

fillCount?: number

Number of fill parameters described in fillParameters. If omitted, the count is inferred from the array length.

fillParameters?: number[]

Fill parameters used by consumers that need style-specific fill metadata.

parameterCount?: number

Number of line parameters described in parameters. If omitted, the count is inferred from the array length.

parameters?: number[]

Element parameters where the first value is treated as the miter offset.