作成日: 2020/05/27 最終更新日: 2020/08/17
文書種別
制限事項
詳細
以下のようにキーコードと修飾キーを引数に指定してFarPoint.Win.Spread.Keystrokeオブジェクトを作成し入力マップを変更すると、イコール(=)キーに既定で設定されているStartEditingFormula(数式の編集を開始)の動作を無効にすることができません。
New FarPoint.Win.Spread.Keystroke(Keys.OemMinus, Keys.Shift)
文字を指定して入力マップを定義することで無効にすることができます。
■サンプルコード(VB.NET)
New FarPoint.Win.Spread.Keystroke(Keys.OemMinus, Keys.Shift)
文字を指定して入力マップを定義することで無効にすることができます。
■サンプルコード(VB.NET)
Dim im As FarPoint.Win.Spread.InputMap
im = FpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused)
im.Put(New FarPoint.Win.Spread.Keystroke("="), FarPoint.Win.Spread.SpreadActions.None)
im = FpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused)
im.Put(New FarPoint.Win.Spread.Keystroke("="), FarPoint.Win.Spread.SpreadActions.None)
旧文書番号
85638