PowerTools SPREAD for ASP.NET 8.0J
Border プロパティ (StyleInfo)

セル罫線のスタイルを取得または設定します。
構文
'Declaration
 
Public Overridable Property Border As Border
public virtual Border Border {get; set;}

プロパティ値

このスタイルのセル罫線を含むBorderオブジェクト
解説

このプロパティの設定は、StyleNameプロパティを使用してセルに名前付きスタイルが割り当てられていて、その名前付きスタイルが境界線を設定する場合、オーバーライドできます。

この例では、スタイルの境界線を作成し、それをヘッダに適用します。
FarPoint.Web.Spread.StyleInfo copy = new FarPoint.Web.Spread.StyleInfo("HeaderDefault");
copy.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue);
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo(copy);
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = si; 
Dim copy As New FarPoint.Web.Spread.StyleInfo("HeaderDefault")
copy.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue)
Dim si As New FarPoint.Web.Spread.StyleInfo(copy)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = si 
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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