PowerTools SPREAD for Windows Forms 8.0J
ClipboardPasteFormulas フィールド


クリップボードから現在のシートに数式のみを貼り付けます。
構文
'Declaration
 
Public Shared ReadOnly ClipboardPasteFormulas As Object
'使用法
 
Dim value As Object
 
value = SpreadActions.ClipboardPasteFormulas
public static readonly object ClipboardPasteFormulas
次のサンプルコードは、クリップボードからのデータの貼り付けに[P]キーを使用するマップを設定します。
FarPoint.Win.Spread.InputMap im;
im = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused);
im.Put(New FarPoint.Win.Spread.Keystroke(Keys.P, Keys.None), FarPoint.Win.Spread.SpreadActions.ClipboardPasteFormulas);
Dim im As FarPoint.Win.Spread.InputMap
im = FpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused)
im.Put(New FarPoint.Win.Spread.Keystroke(Keys.P, Keys.None), FarPoint.Win.Spread.SpreadActions.ClipboardPasteFormulas)
解説

このアクションは、クリップボードの数式を、指定された位置に貼り付けます。

このアクションを次のアクションと比較してください。

入力マップまたはアクションマップには、アプリケーションで使用する適切なアクションを設定してください。

このアクションは、入力マップまたはアクションマップの対応するキーまたはキーの組み合わせと共に使用します。マップの詳細については、「キーボード操作」を参照してください。

参照

SpreadActions クラス
SpreadActions メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.