MESCIUS SPREAD for Windows Forms 17.0J
Border プロパティ (Column)

この列のセルのデフォルト罫線を取得または設定します。
構文
'Declaration
 
Public Property Border As IBorder
public IBorder Border {get; set;}

プロパティ値

境界線を含むIBorderオブジェクト
次のサンプルコードは、列の境界線を指定します。
FarPoint.Win.Spread.Column col;
FarPoint.Win.RoundedLineBorder bord = new FarPoint.Win.RoundedLineBorder(Color.Blue, 1);;
col = fpSpread1.ActiveSheet.Columns[0];
col.Border = bord;
Dim col As FarPoint.Win.Spread.Column
Dim bord As New FarPoint.Win.RoundedLineBorder(Color.Blue, 1)
col = fpSpread1.ActiveSheet.Columns(0)
col.Border = bord
参照

Column クラス
Column メンバ

 

 


© MESCIUS inc. All rights reserved.