Interface GuideColumn

Represents a goard guide for columns in Penpot. This interface includes properties for defining the type, visibility, and parameters of column guides within a board.

interface GuideColumn {
    type: "column";
    display: boolean;
    params: GuideColumnParams;
}

Properties

Properties

type: "column"

The type of the guide, which is always 'column' for column guides.

display: boolean

Specifies whether the column guide is displayed.

The parameters defining the appearance and layout of the column guides.