Orca Note Plugin API Documentation
    Preparing search index...

    Interface ColumnPanel

    Represents a panel container that arranges its children in a column. Used for vertical panel layouts.

    interface ColumnPanel {
        children: (RowPanel | ViewPanel)[];
        direction: "column";
        id: string;
        width: number;
    }
    Index

    Properties

    children: (RowPanel | ViewPanel)[]

    Child panels contained within this column

    direction: "column"

    Specifies that children are arranged vertically

    id: string

    Unique identifier for the column panel

    width: number

    Width of the column panel in pixels