PowerTools SPREAD for ASP.NET 8.0J
Border コンストラクタ()

デフォルト値を使用して、新しい境界線を作成します。
構文
'Declaration
 
Public Function New()
public Border()
解説
Borderクラスのインスタンスを初期化します。
この例では、新しいBorderオブジェクトを作成し、そのBorderStyleを設定して、それをCellオブジェクトのインスタンスに適用します。
FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
acell = FpSpread1.Cells[0, 0];
border.BorderStyle = BorderStyle.Dotted;
acell.Border = border;
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
acell = FpSpread1.Cells(0, 0)
border.BorderStyle = BorderStyle.Dotted
acell.Border = border
参照

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

 

 


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