Orca Note Plugin API Documentation
    Preparing search index...

    Interface RowPanel

    Represents a panel container that arranges its children in a row. Used for horizontal panel layouts.

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

    Properties

    children: (ViewPanel | ColumnPanel)[]

    Child panels contained within this row

    direction: "row"

    Specifies that children are arranged horizontally

    height: number

    Height of the row panel in pixels

    id: string

    Unique identifier for the row panel