CimLegend.Row (property)

Gets and sets the collection of legend rows.
Syntax: Set CimLegendRows = object.Row
object.Row = CimLegendRows
Description: CimLegend.Row contains a collection of legend rows. On the series legend, each row is a series that has the CimSeries.InLegend property set to True. On the sliders legend, each row is a slider that has the CimSlider.InLegend property set to True.

Example

The following CimView script excerpt returns the second row from the series legend:

Dim Row as CimSeries
Set Row = cimOleObj.Series.Legend.Row.Item(1)