[]
• オプション bigButton: string | boolean
• オプション comboHeight: number
• オプション comboWidth: number
• オプション commandMap: Object
• commandName: string
• オプション commandOptions: any
• オプション direction: string
• オプション dropdownList: IListGroupItemData[]
• オプション dropdownMaxHeight: number
• オプション dropdownMaxWidth: number
• オプション enableContext: string
• オプション group: string
• オプション hidden: boolean
• オプション iconClass: string
• オプション iconHeight: number
• オプション iconWidth: number
• オプション isGroupItem: boolean
• オプション keepFocusInSpread: boolean
• オプション listContent: IListGroupItemData[]
• オプション maxHeight: number
• オプション maxWidth: number
• オプション needAsyncUpdate: boolean
• オプション showDropdownButton: boolean
• オプション subCommands: string[]
• オプション text: string
• オプション textBoxHeight: number
• オプション textBoxWidth: number
• オプション title: string
• オプション type: string
• オプション visibleContext: string
• オプション visiblePriority: number
▸ Optional execute(context, propertyName?, value?): void
コマンドロジックを実行します。contextはDesignerインスタンスであり、propertyNameはトリガーソースを識別し、valueは入力値です。
| 名前 | 型 |
|---|---|
context |
Designer |
propertyName? |
string |
value? |
any |
void
▸ Optional getState(context): any
コマンドの現在の状態を取得します。contextパラメータはDesignerインスタンスです。コマンドの現在の状態(例: value、enabled、visible)を含むオブジェクトを返します。
| 名前 | 型 |
|---|---|
context |
Designer |
any
▸ Optional init(context): void
コマンドが最初にロードされたときに初期化します。コマンド登録中に一度だけ呼び出されます。イベントリスナーを設定したり、アクションを登録したりするために使用します。
| 名前 | 型 |
|---|---|
context |
Designer |
void