GrapeCity ActiveReports for .NET 16.0J
Remove(String) メソッド
使用例 

GrapeCity.ActiveReports.Data 名前空間 > FieldCollection クラス > Remove メソッド : Remove(String) メソッド
コレクションから削除するフィールドの名前を指定します。
コレクションから、指定した名前のフィールドを削除します。
シンタックス
'宣言
 
Public Overloads Sub Remove( _
   ByVal fieldName As String _
) 
public void Remove( 
   string fieldName
)

パラメータ

fieldName
コレクションから削除するフィールドの名前を指定します。
使用例
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.Remove("Description");
}
Private Sub rptUnboundGrp_DataInitialize(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.DataInitialize
  Fields.Add("CategoryID")
  Fields.Add("CategoryName")
  Fields.Add("ProductName")
  Fields.Add("UnitsInStock")
  Fields.Add("Description")
  Fields.Add("TotalLabel")
  Fields.Remove("Description")
End Sub
参照

FieldCollection クラス
FieldCollection メンバ
オーバーロード一覧