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

罫線の色
指定した色で1ピクセル幅の実線の境界線を新規作成します。
構文
'Declaration
 
Public Function New( _
   ByVal color As Color _
)
public Border( 
   Color color
)

パラメータ

color
罫線の色
解説
境界線の色オプションを指定して、Borderクラスのインスタンスを初期化します。
この例では、新しいBorderオブジェクトを作成し、それをCellオブジェクトのインスタンスに適用します。
FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border(Color.Red);
FarPoint.Web.Spread.Cell acell;
acell = FpSpread1.Cells[0, 0];
acell.Border = border;
Dim border As New FarPoint.Web.Spread.Border(Color.Red)
Dim acell As FarPoint.Web.Spread.Cell
acell = FpSpread1.Cells(0, 0)
acell.Border = border
参照

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

 

 


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