PowerTools ActiveReports for .NET 9.0J
Insert メソッド (FieldCollection)
使用例 

Fieldを挿入するコレクション内の位置。0から始まるインデックス番号。
挿入するFieldオブジェクト。
コレクション内の指定したインデックスの位置にFieldオブジェクトを挿入します。
構文
'宣言
 
Public Sub Insert( _
   ByVal index As Integer, _
   ByVal field As Field _
) 
public void Insert( 
   int index,
   Field field
)

パラメータ

index
Fieldを挿入するコレクション内の位置。0から始まるインデックス番号。
field
挿入するFieldオブジェクト。
使用例
private void UnboundGrp_DataInitialize(object sender, System.EventArgs eArgs)
{
    Fields.Add("CategoryID");
    Fields.Add("CategoryName");
    Fields.Add("ProductName");
    Fields.Add("UnitsInStock");
    Fields.Add("Description");
    Fields.Add("TotalLabel");
    Fields.Insert(0,Fields[1]);
}
参照

関連項目

FieldCollection クラス
FieldCollection メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.