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

ファイルの名前。
XML 入力マップファイルをロードします。
構文
'宣言
 
Public Overloads Sub LoadXmlInputMapFile( _
   ByVal fileName As String _
) 
public void LoadXmlInputMapFile( 
   string fileName
)

パラメータ

fileName
ファイルの名前。
使用例
次のサンプルコードは、LoadXmlInputMapFile メソッドを使用します。
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.SaveXmlInputMapFile("c:\\file.xml");
sv.LoadXmlInputMapFile("c:\\file.xml");
//sv.LoadXmlInputMapFile("c:\\file.xml", FarPoint.Win.Spread.OperationMode.Normal);
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.SaveXmlInputMapFile("c:\file.xml")
sv.LoadXmlInputMapFile("c:\file.xml")
'sv.LoadXmlInputMapFile("c:\file.xml", FarPoint.Win.Spread.OperationMode.Normal)
参照

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

 

 


© MESCIUS inc. All rights reserved.