Interface GuideRow

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

interface GuideRow {
    type: "row";
    display: boolean;
    params: GuideColumnParams;
}

Properties

Properties

type: "row"

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

display: boolean

Specifies whether the row guide is displayed.

The parameters defining the appearance and layout of the row guides. Note: This reuses the same parameter structure as column guides.