[]
Sheets.FormulaPanel.Commands
• closeHints: Object
ヒントを閉じるためのコマンドを表します。
プロパティ
execute - 実行操作を実行します。
実例
// 次のサンプルコードは、closeHints コマンドを Esc ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("closeHints", 27);
名前 | 型 |
---|---|
execute |
(context : FormulaEditor ) => any |
• commitContentToActiveCell: Object
コンテンツをアクティブセルにコミットするためのコマンドを表します。
プロパティ
execute - 実行操作を実行します。
実例
// 次のサンプルコードは、commitContentToActiveCell コマンドを Ctrl-S ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("commitContentToActiveCell", 83, true);
名前 | 型 |
---|---|
execute |
(context : FormulaEditor ) => any |
• exitEdit: Object
編集を終了するためのコマンドを表します。
プロパティ
execute - 実行操作を実行します。
実例
// 次のサンプルコードは、exitEdit コマンドを Esc ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("exitEdit", 27);
名前 | 型 |
---|---|
execute |
(context : FormulaEditor ) => any |
• formatDocument: Object
ドキュメントを書式設定するためのコマンドを表します。
プロパティ
execute - 実行操作を実行します。
実例
// 次のサンプルコードは、formatDocument コマンドを Alt-Shift-F ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("formatDocument", 70, false, true, true);
名前 | 型 |
---|---|
execute |
(context : FormulaEditor ) => any |
• showHints: Object
ヒントを表示するためのコマンドを表します。
プロパティ
execute - 実行操作を実行します。
実例
// 次のサンプルコードは、showHints コマンドを Ctrl-Shift-Whitespace ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("showHints", 32, true, true);
名前 | 型 |
---|---|
execute |
(context : FormulaEditor ) => any |
• toggleAbsoluteRelativeReferences: Object
絶対参照・相対参照を切り替えるためのコマンドを表します。
プロパティ
execute - 実行操作を実行します。
実例
// 次のサンプルコードは、toggleAbsoluteRelativeReferences コマンドを F4 ショートカットにバインドする方法を示します。
spread.commandManager().setShortcutKey("toggleAbsoluteRelativeReferences", 115);
名前 | 型 |
---|---|
execute |
(context : FormulaEditor ) => any |