FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > NamedStyleCollection クラス > Add メソッド : Add(NamedStyle) メソッド |
'Declaration Public Overloads Overridable Function Add( _ ByVal style As NamedStyle _ ) As Integer
'使用法 Dim instance As NamedStyleCollection Dim style As NamedStyle Dim value As Integer value = instance.Add(style)
public virtual int Add( NamedStyle style )
例外 | 説明 |
---|---|
System.ArgumentNullException | スタイルが指定されていないか、指定されたスタイルがNullです。 |
FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection(); FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault"); ns.BackColor = Color.LightBlue; nsc.Add(ns); fpSpread1.NamedStyles = nsc; fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc[0];
Dim nsc As New FarPoint.Win.Spread.NamedStyleCollection() Dim ns As New FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault") ns.BackColor = Color.LightBlue nsc.Add(ns) FpSpread1.NamedStyles = nsc fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc(0)