PowerTools SPREAD for Windows Forms 10.0J
LoadXmlInputMapFileWhenShapeHasFocus(Stream) メソッド


ファイルのストリーム。
シェイプにフォーカスがあるときのXML入力マップファイルをロードします。
構文
'Declaration
 
Public Overloads Sub LoadXmlInputMapFileWhenShapeHasFocus( _
   ByVal stream As Stream _
) 
'使用法
 
Dim instance As SpreadView
Dim stream As Stream
 
instance.LoadXmlInputMapFileWhenShapeHasFocus(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 メンバ
オーバーロード一覧

 

 


© 2004-2017, GrapeCity inc. All rights reserved.