PowerTools SPREAD for ASP.NET 8.0J
Item(Int32) プロパティ

コレクション内のスタイルのインデックス
コレクションの指定したインデックスのスタイル(NamedStyleオブジェクト)を取得または設定します。
構文
'Declaration
 
Public Overridable Property Item( _
   ByVal index As Integer _
) As NamedStyle
public virtual NamedStyle Item( 
   int index
) {get; set;}

パラメータ

index
コレクション内のスタイルのインデックス

プロパティ値

スタイルを含むNamedStyleオブジェクト
例外
例外説明
System.IndexOutOfRangeException指定したインデックスは有効ではありません。
System.ArgumentNullException値が指定されていません。メンバはNullに設定できません。
この例では、指定した項目をスプレッドシートのNamedStyleコレクションに追加し、このメンバの使い方を示します(C#にはItemプロパティはありません)。
[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()
参照

NamedStyleCollection クラス
NamedStyleCollection メンバ

 

 


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