Skip to main content

ProjectButtonParameters

interface ProjectButtonParameters{
label: TranslationText;
tooltip: TranslationText;
icon: IconResourceId;
onclick: (n: number) => void;
shortcut: ButtonShortcut;
}

Properties

Parameters

NameTypeDescription
labelTranslationTextThe button's display text, supporting multiple languages
tooltipTranslationTextText displayed when hovering over the button, supporting multiple languages
iconIconResourceIdThe graphical icon to display on the button (must be one of the built-in resources)
onclickfunction()The function executed when a user clicks the button
shortcutButtonShortcutThe keyboard shortcut that triggers this button's action

Description

This interface defines the properties required when creating a new button in the project interface.