interface AcDbLinetypePreviewSvgOptions {
    height?: number;
    padding?: number;
    repeats?: number;
    stroke?: string;
    strokeWidth?: number;
    width?: number;
}

Properties

height?: number

Height of preview SVG.

36
padding?: number

Left/right horizontal padding in pixels.

8
repeats?: number

How many pattern cycles to display in preview width.

4
stroke?: string

Stroke color.

'currentColor'
strokeWidth?: number

Stroke width in pixels.

2
width?: number

Width of preview SVG.

220