MESCIUS SPREAD for Windows Forms 15.0J
SaveHtmlRange(Int32,Int32,Int32,Int32,Boolean,Boolean,Stream) メソッド
使用例 

開始行インデックス
列の開始インデックス
行数
列数
行ヘッダを含む場合は True
列ヘッダを含む場合は True
テキスト化した範囲の保存先のストリーム
シートの指定した範囲を指定したストリームに HTML で保存します。
構文
'宣言
 
Public Overloads Sub SaveHtmlRange( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer, _
   ByVal rowHeaders As Boolean, _
   ByVal columnHeaders As Boolean, _
   ByVal stream As Stream _
) 

パラメータ

row
開始行インデックス
column
列の開始インデックス
rowCount
行数
columnCount
列数
rowHeaders
行ヘッダを含む場合は True
columnHeaders
列ヘッダを含む場合は True
stream
テキスト化した範囲の保存先のストリーム
使用例
次のサンプル コードは、スプレッドシートの指定した範囲を HTML でストリームに保存します。
string f; 
f = "D:\\samples\\spread.html"; 
System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.CreateNew, IO.FileAccess.ReadWrite); 
fpSpread1.ActiveSheet.SaveHtmlRange(0, 0, 3, 3, true, true, s); 
s.Close();
Dim f As String
f = "D:\samples\spread.html"
Dim s As New System.IO.FileStream(f, IO.FileMode.CreateNew, IO.FileAccess.ReadWrite)
FpSpread1.ActiveSheet.SaveHtmlRange(0, 0, 3, 3, True, True, s)
s.Close()
参照

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

 

 


© MESCIUS inc. All rights reserved.