PowerTools SPREAD for Windows Forms 8.0J
Add メソッド (SheetViewCollection)


コレクションに追加するシート(SheetViewオブジェクト)
コレクションにシートを追加します。
構文
'Declaration
 
Public Function Add( _
   ByVal obj As Object _
) As Integer
'使用法
 
Dim instance As SheetViewCollection
Dim obj As Object
Dim value As Integer
 
value = instance.Add(obj)
public int Add( 
   object obj
)

パラメータ

obj
コレクションに追加するシート(SheetViewオブジェクト)

戻り値の型

シートのインデックスを表す Integer
次のサンプルコードは、コレクションにシートを追加します。
FarPoint.Win.Spread.SheetView s = new FarPoint.Win.Spread.SheetView();
s.ColumnCount = 4;
s.RowCount = 4;
fpSpread1.Sheets.Add(s);
fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.AsNeeded;
Dim s As New FarPoint.Win.Spread.SheetView()
s.ColumnCount = 4
s.RowCount = 4
FpSpread1.Sheets.Add(s)
FpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.AsNeeded
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


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