GrapeCity SPREAD for Windows Forms 11.0J
SaveXmlInputMapFile(String) メソッド


ファイルの名前。
XML 入力マップファイルを保存します。
構文
'Declaration
 
Public Overloads Sub SaveXmlInputMapFile( _
   ByVal fileName As String _
) 
'使用法
 
Dim instance As SpreadView
Dim fileName As String
 
instance.SaveXmlInputMapFile(fileName)
public void SaveXmlInputMapFile( 
   string fileName
)

パラメータ

fileName
ファイルの名前。
次のサンプルコードは、SaveXmlInputMapFile メソッドを使用します。
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 メンバ
オーバーロード一覧

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.