MESCIUS SPREAD for Windows Forms 15.0J
SaveXmlInputMapFileWhenChildHasFocus(String) メソッド
使用例 

ファイルの名前。
子にフォーカスがあるときのXML入力マップファイルを保存します。
構文
'宣言
 
Public Overloads Sub SaveXmlInputMapFileWhenChildHasFocus( _
   ByVal fileName As String _
) 
public void SaveXmlInputMapFileWhenChildHasFocus( 
   string fileName
)

パラメータ

fileName
ファイルの名前。
使用例
次のサンプルコードは、SaveXmlInputMapFileWhenChildHasFocus メソッドを使用します。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
FarPoint.Win.Spread.InputMap im = new FarPoint.Win.Spread.InputMap();
im.Put(new FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None), FarPoint.Win.Spread.SpreadActions.MoveToNextRow);
sv.SetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused, im);
sv.SaveXmlInputMapFileWhenChildHasFocus("c:\\file.xml");
Dim sv As FarPoint.Win.Spread.SpreadView = fpSpread1.GetRootWorkbook()
Dim im As New FarPoint.Win.Spread.InputMap()
im.Put(New FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None), FarPoint.Win.Spread.SpreadActions.MoveToNextRow)
sv.SetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused, im)
sv.SaveXmlInputMapFileWhenChildHasFocus("c:\file.xml")
参照

SpreadView クラス
SpreadView メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.