FarPoint.Web.Spread 名前空間 > SheetView クラス : NamedStyles プロパティ |
'Declaration
Public Property NamedStyles As NamedStyleCollection
public NamedStyleCollection NamedStyles {get; set;}
このプロパティが使用できるのは実行時のみです。
デフォルトでは、指定したコレクションはシート内のすべてのスタイルモデルで共有されます。このプロパティを設定すると、INamedStyleSupportインタフェースを実装するシート内のすべてのスタイルモデルが新しいコレクションを参照して更新されます。
Dim sv As FarPoint.Web.Spread.SheetView Dim style1 As New FarPoint.Web.Spread.NamedStyle() style1.BackColor = Color.Yellow style1.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 3) sv = FpSpread1.ActiveSheetView sv.NamedStyles.Add(style1) sv.DefaultStyle=style1
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView; FarPoint.Web.Spread.NamedStyle style1 = new FarPoint.Web.Spread.NamedStyle(); style1.BackColor = Color.Yellow; style1.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 3); sv.NamedStyles.Add(style1); sv.DefaultStyle = style1;