PowerTools SPREAD for Windows Forms 8.0J
Find メソッド (NamedStyleCollection)


検索するスタイルの名前
コレクションから指定した名前のスタイル(NamedStyleオブジェクト)を検索します。
構文
'Declaration
 
Public Overridable Function Find( _
   ByVal name As String _
) As NamedStyle
'使用法
 
Dim instance As NamedStyleCollection
Dim name As String
Dim value As NamedStyle
 
value = instance.Find(name)
public virtual NamedStyle Find( 
   string name
)

パラメータ

name
検索するスタイルの名前

戻り値の型

スタイルを含むNamedStyleオブジェクト
次のサンプルコードは、指定した名前のNamedStyleをコレクションから検索します。
FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection();
FarPoint.Win.Spread.NamedStyle ns1 = new FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault");
FarPoint.Win.Spread.NamedStyle ns2 = new FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault");
FarPoint.Win.Spread.NamedStyle ns2 = new FarPoint.Win.Spread.NamedStyle();
ns1.BackColor = Color.LightBlue;
ns2.BackColor = Color.Gray;
nsc.AddRange(new Object[] {ns1, ns2});
fpSpread1.NamedStyles = nsc;
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc[0];
fpSpread1.ActiveSheet.DefaultStyle = nsc[1];
ns3 = nsc.Find("StyleData");
label1.Text = "There is a style in the collection with the name " + ns3.Name; 
Dim nsc As New FarPoint.Win.Spread.NamedStyleCollection()
Dim ns1 As New FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault")
Dim ns2 As New FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault")
Dim ns3 As New FarPoint.Win.Spread.NamedStyle()
ns1.BackColor = Color.LightBlue
ns2.BackColor = Color.Gray
nsc.AddRange(New Object() {ns1, ns2})
FpSpread1.NamedStyles = nsc
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc(0)
FpSpread1.ActiveSheet.DefaultStyle = nsc(1)
ns3 = nsc.Find("StyleData")
Label1.Text = "There is a style in the collection with the name " & ns3.Name
参照

NamedStyleCollection クラス
NamedStyleCollection メンバ

 

 


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