UXP Toolkit
    Preparing search index...

    Interface UxpPanelInfo

    Class describing a panel of the plugin.

    interface UxpPanelInfo {
        description: string;
        icons: {
            path: string;
            scale: number[];
            species: string[];
            theme: string[];
        }[];
        id: string;
        label: string;
        maximumSize: { height: number; width: number };
        menuItems: UxpMenuItems;
        minimumSize: { height: number; width: number };
        preferredDockedSize: { height: number; width: number };
        preferredFloatingSize: { height: number; width: number };
        shortcut: {
            altKey: boolean;
            commandKey: boolean;
            ctrlKey: boolean;
            shiftKey: boolean;
            shortcutKey: string;
        };
        title: string;
    }
    Index

    Properties

    description: string

    Get panel description, localized string.

    icons: { path: string; scale: number[]; species: string[]; theme: string[] }[]

    Get panel icons.

    id: string

    Get panel id.

    label: string

    Get panel label, localized string.

    maximumSize: { height: number; width: number }

    Get panel maximum size.

    menuItems: UxpMenuItems

    Get panel menu items.

    minimumSize: { height: number; width: number }

    Get panel minimum size.

    preferredDockedSize: { height: number; width: number }

    Get panel preferred docked size.

    preferredFloatingSize: { height: number; width: number }

    Get panel preferred floating size.

    shortcut: {
        altKey: boolean;
        commandKey: boolean;
        ctrlKey: boolean;
        shiftKey: boolean;
        shortcutKey: string;
    }

    Get panel shortcut.

    title: string

    Get panel title, localized string.