PowerTools SPREAD for ASP.NET 8.0J
GetSheetView メソッド

シートの名前
コレクションから指定した名前のシートを取得します。
構文
'Declaration
 
Public Function GetSheetView( _
   ByVal name As String _
) As SheetView
public SheetView GetSheetView( 
   string name
)

パラメータ

name
シートの名前

戻り値の型

シートを含むSheetViewオブジェクト
この例では、指定した名前を持つシートを返します。
System.Collections.ArrayList coll = new System.Collections.ArrayList(2);
FarPoint.Web.Spread.SheetView sv2 = new FarPoint.Web.Spread.SheetView();
FarPoint.Web.Spread.SheetView sv3 = new FarPoint.Web.Spread.SheetView();
sv2.GridLineColor = Color.Red;
sv2.GridLines = GridLines.Vertical;
sv3.GridLineColor = Color.Yellow;
sv3.GridLines = GridLines.Horizontal;
coll.Add(sv2);
coll.Add(sv3);
FpSpread1.Sheets.Clear();
FpSpread1.Sheets.AddRange(coll);
FpSpread1.Sheets.GetSheetView("Sheet2").BackColor = Color.Tan;
Dim coll As New System.Collections.ArrayList(2)
Dim sv2 As New FarPoint.Web.Spread.SheetView
Dim sv3 As New FarPoint.Web.Spread.SheetView
sv2.GridLineColor = Color.Red
sv2.GridLines = GridLines.Vertical
sv3.GridLineColor = Color.Yellow
sv3.GridLines = GridLines.Horizontal
coll.Add(sv2)
coll.Add(sv3)
FpSpread1.Sheets.Clear()
FpSpread1.Sheets.AddRange(coll)
FpSpread1.Sheets.GetSheetView("Sheet2").BackColor = Color.Tan
参照

SheetViewCollection クラス
SheetViewCollection メンバ

 

 


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