FarPoint.Web.Spread 名前空間 > StyleInfo クラス : 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