Gets and sets the collection of legend columns. | |
Syntax: | Set CimLegendColumns =
object.Column object.Column = CimLegendColumns |
Description: | CimLegend.Column contains a
collection of legend columns. On the series legend, each column can be
of type
apLegendSeriesName, apLegendSeriesValueAtIndex or
apLegendSeriesValueAtSlider. On the sliders legend, each column can be
of type apLegendSliderName or
apLegendSliderValue. Example The following CimView script excerpt returns the second column from the series legend: Dim Column as CimLegendColumn Set Column = cimOleObj.Series.Legend.Column.Item(1) |