Returns the name of the channel property that DIAdem displays in the legend of a 2D axis system in DIAdem VIEW.
Object.Name
| Object | LegendItem
Object with this property |
| Object.Name | String with read and write access |
The following example displays the names of all the legend entries in a 2D axis system:
Dim oMyLegends, oMyLegend Set oMyLegends = View.ActiveSheet.ActiveArea.DisplayObj.LegendItems For Each oMyLegendItem in oMyLegends Call MsgBoxDisp("Name of LegendItem: " & oMyLegendItem.Name) Next