ActiveReports3 Request technical support
Remove(String) Method
See Also  Example


fieldName
Specifies the field name to remove from the collection.
Removes the field with specified name from the collection.

Syntax

Visual Basic (Declaration) 
Overloads Public Sub Remove( _
   ByVal fieldName As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As FieldCollection
Dim fieldName As String
 
instance.Remove(fieldName)
C# 
public void Remove( 
   string fieldName
)

Parameters

fieldName
Specifies the field name to remove from the collection.

Example

C#Copy Code
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");
}
Visual BasicCopy Code
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

See Also