FarPoint.Web.Spread 名前空間 > NamedStyleCollection クラス : Item(Int32) プロパティ |
'Declaration
Public Overridable Property Item( _ ByVal index As Integer _ ) As NamedStyle
public virtual NamedStyle Item( int index ) {get; set;}
例外 | 説明 |
---|---|
System.IndexOutOfRangeException | 指定したインデックスは有効ではありません。 |
System.ArgumentNullException | 値が指定されていません。メンバはNullに設定できません。 |
[ThereisnoItempropertyinC#.]
Dim nsc As New FarPoint.Web.Spread.NamedStyleCollection Dim ns As New FarPoint.Web.Spread.NamedStyle("StyleData", "DataAreaDefault") Dim b As Boolean ns.BackColor = Color.Yellow ns.Border = New FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Blue) nsc.Add(ns) FpSpread1.NamedStyles.Add(nsc.Item(0)) FpSpread1.ActiveSheetView.DefaultStyle = nsc(0) b = nsc.IsSynchronized() TextBox1.Text = b.ToString()