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

ファイルストリーム。
子にフォーカスがあるときのXML入力マップファイルをロードします。
構文
'宣言
 
Public Overloads Sub LoadXmlInputMapFileWhenChildHasFocus( _
   ByVal stream As Stream _
) 
public void LoadXmlInputMapFileWhenChildHasFocus( 
   Stream stream
)

パラメータ

stream
ファイルストリーム。
使用例
次のサンプルコードは、LoadXmlInputMapFileWhenChildHasFocus メソッドを使用します。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
string f;
f = "C:\\file.xml";
System.IO.FileStream s = new System.IO.FileStream(f, System.IO.FileMode.Open, System.IO.FileAccess.ReadWrite);
sv.LoadXmlInputMapFileWhenChildHasFocus(s);
Dim sv As FarPoint.Win.Spread.SpreadView = fpSpread1.GetRootWorkbook()
Dim f As String
f = "C:\file.xml"
Dim s As New System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite)
sv.LoadXmlInputMapFileWhenChildHasFocus(s)
参照

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

 

 


© MESCIUS inc. All rights reserved.