Example: RuntimeAttributesEnabled property
This code example makes the X-Axis and Y-Axis property tabs available for editing during runtime. It allows operators to edit elements in the line legend by double-clicking hotspot areas. And it allows operators to right-click on the trend object to open a context menu.
Private Sub AllowLegendXYAxis() Trend1.RuntimeAttributesEnabled = _ rstEnableXAxisPage + _ rstEnableYAxisPage + _ rstEnableEditLegend + _ rstEnableContextMenu End Sub
Provide Feedback