ReportOperationsCollection.Add Method
Adds an object to the end of the ReportOperationsCollection.
Namespace:  Microsoft.ReportingServices.Interfaces
Assemblies:   Microsoft.ReportingServices.SharePoint.UI.WebParts (in Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)
  Microsoft.ReportingServices.Interfaces (in Microsoft.ReportingServices.Interfaces.dll)
Syntax
'Declaration
Public Function Add ( _
    operation As ReportOperation _
) As Integer
'Usage
Dim instance As ReportOperationsCollection
Dim operation As ReportOperation
Dim returnValue As Integer
returnValue = instance.Add(operation)
public int Add(
    ReportOperation operation
)
public:
int Add(
    ReportOperation operation
)
member Add : 
        operation:ReportOperation -> int 
public function Add(
    operation : ReportOperation
) : int
Parameters
- operation
Type: Microsoft.ReportingServices.Interfaces.ReportOperation
The report operation to add to the collection. 
Return Value
Type: System.Int32
The position into which the new report operation was inserted.
See Also