adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / IObjectConfigurationReportWriter Interface / AddCollection Method
The internal name for the collection
The display name for the collection
Indicates whether sequence numbers should be automatically added to the report


In This Topic
    AddCollection Method
    In This Topic
    Adds a new collection of values to the report
    Syntax
    'Declaration
     
    
    <MustUseReturnValueAttribute()>
    <NotNullAttribute()>
    Function AddCollection( _
       ByVal relationName As String, _
       ByVal displayName As String, _
       ByVal useSequenceNumbers As Boolean _
    ) As ICollectionReportWriter
    [MustUseReturnValue()]
    [NotNull()]
    ICollectionReportWriter AddCollection( 
       string relationName,
       string displayName,
       bool useSequenceNumbers
    )
    [MustUseReturnValue()]
    [NotNull()]
    ICollectionReportWriter^ AddCollection( 
       String^ relationName,
       String^ displayName,
       bool useSequenceNumbers
    ) 

    Parameters

    relationName
    The internal name for the collection
    displayName
    The display name for the collection
    useSequenceNumbers
    Indicates whether sequence numbers should be automatically added to the report
    Remarks

    This method returns a reference to an ICollectionReportWriter representing the collection. The caller should ICollectionReportWriter.AddItem for each item in the collection to add its value to the report.

    See Also