CimLegendRows (object)

Represents a collection of legend rows.
Description: CimLegendRows represents a collection of legend row objects. These objects can either be series, if in the series legend, or sliders, if in the slider legend. The legend rows are in the order they are drawn, from top to bottom.

Example

The following CimView script excerpt shows how to traverse through each series (legend row) in the series legend:

Dim Row as CimSeries
For Each Row in cimOleObj.Series.Legend.Row
    If Row.Type = apSeriesScatter Then
        MsgBox "We found a scatter series."
    End If
Next
Properties: Count , Item , VisibleCount
Methods: