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

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

パラメータ

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