MESCIUS SPREAD for ASP.NET 10.0J
Border コンストラクタ(BorderStyle,Color,Int16)

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

パラメータ

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

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

 

 


© MESCIUS inc. All rights reserved.