Specifies the column width of a legend entry in a 2D axis system in DIAdem VIEW.
Object.Width
| Object |
LegendItem Object with this property |
| Object.Width | LongInteger with read and write access |
The following example displays the column widths of all the legend entries in a 2D axis system:
Dim oMyLegends, oMyLegendItem Set oMyLegends = View.ActiveSheet.ActiveArea.DisplayObj.LegendItems For Each oMyLegendItem in oMyLegends Call MsgBoxDisp("Width of LegendItem: " & oMyLegendItem.Width) Next