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

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

パラメータ

stream
ファイルのストリーム。
使用例
次のサンプルコードは、LoadXmlInputMapFileWhenShapeHasFocus メソッドを使用します。
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.LoadXmlInputMapFileWhenShapeHasFocus(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.LoadXmlInputMapFileWhenShapeHasFocus(s)
参照

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

 

 


© MESCIUS inc. All rights reserved.