FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス > LoadXmlInputMapFileWhenChildHasFocus メソッド : LoadXmlInputMapFileWhenChildHasFocus(Stream) メソッド |
'Declaration
Public Overloads Sub LoadXmlInputMapFileWhenChildHasFocus( _ ByVal stream As Stream _ )
'使用法
Dim instance As SpreadView Dim stream As Stream instance.LoadXmlInputMapFileWhenChildHasFocus(stream)
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)