MESCIUS SPREAD for Windows Forms 15.0J
ExtendToNextColumn フィールド
使用例 

選択範囲を右に1列拡張します。
構文
'宣言
 
Public Shared ReadOnly ExtendToNextColumn As Object
public static readonly object ExtendToNextColumn
使用例
次のサンプルコードは、選択範囲を右に1列拡張するのに[X]キーを使用するマップを設定します。
FarPoint.Win.Spread.InputMap im;
im = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused);
im.Put(new FarPoint.Win.Spread.Keystroke(Keys.X, Keys.None), FarPoint.Win.Spread.SpreadActions.ExtendToNextColumn);
Dim im As FarPoint.Win.Spread.InputMap
im = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused)
im.Put(New FarPoint.Win.Spread.Keystroke(Keys.X, Keys.None), FarPoint.Win.Spread.SpreadActions.ExtendToNextColumn)
解説

このアクションは、選択範囲をシートの次の列に拡張します。

このアクションにデフォルトで割り当てられているキーの組み合わせは、[Shift]+[←]です。

独自の入力マップまたはアクションマップを定義することにより、このアクションをカスタムのキーの組み合わせに対応付けることができます。マップの詳細については、「キーボード操作」を参照してください。

参照

SpreadActions クラス
SpreadActions メンバ

 

 


© MESCIUS inc. All rights reserved.