[]
        
(Showing Draft Content)

GC.Spread.Sheets.FormulaPanel.Commands

名前空間: Commands

Sheets.FormulaPanel.Commands

Table of contents

変数

変数

closeHints

closeHints: Object

ヒントを閉じるためのコマンドを表します。

プロパティ execute - 実行操作を実行します。

実例

// 次のサンプルコードは、closeHints コマンドを Esc ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("closeHints", 27);

型宣言

名前
execute (context: FormulaEditor) => any

commitContentToActiveCell

commitContentToActiveCell: Object

コンテンツをアクティブセルにコミットするためのコマンドを表します。

プロパティ execute - 実行操作を実行します。

実例

// 次のサンプルコードは、commitContentToActiveCell コマンドを Ctrl-S ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("commitContentToActiveCell", 83, true);

型宣言

名前
execute (context: FormulaEditor) => any

exitEdit

exitEdit: Object

編集を終了するためのコマンドを表します。

プロパティ execute - 実行操作を実行します。

実例

// 次のサンプルコードは、exitEdit コマンドを Esc ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("exitEdit", 27);

型宣言

名前
execute (context: FormulaEditor) => any

formatDocument

formatDocument: Object

ドキュメントを書式設定するためのコマンドを表します。

プロパティ execute - 実行操作を実行します。

実例

// 次のサンプルコードは、formatDocument コマンドを Alt-Shift-F ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("formatDocument", 70, false, true, true);

型宣言

名前
execute (context: FormulaEditor) => any

showHints

showHints: Object

ヒントを表示するためのコマンドを表します。

プロパティ execute - 実行操作を実行します。

実例

// 次のサンプルコードは、showHints コマンドを Ctrl-Shift-Whitespace ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("showHints", 32, true, true);

型宣言

名前
execute (context: FormulaEditor) => any

toggleAbsoluteRelativeReferences

toggleAbsoluteRelativeReferences: Object

絶対参照・相対参照を切り替えるためのコマンドを表します。

プロパティ execute - 実行操作を実行します。

実例

// 次のサンプルコードは、toggleAbsoluteRelativeReferences コマンドを F4 ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("toggleAbsoluteRelativeReferences", 115);

型宣言

名前
execute (context: FormulaEditor) => any