

| Type | Description | |||
| Property as RadialCustomPropertyEnum | A RadialCustomPropertyEnum expression that specifies the custom property to be changed. | |||
| Variant | A VARIANT expression that indicates the value of the giving property. |
When an item is browsing, it can display any of the following:
The following sample, shows how you can add a gauge control:
With RadialMenu1
.BeginUpdate
.Expanded = True
.InflateCustom = "-16 * dpi"
.Caption(exLayerCaption) = .FormatABC("`ExGauge Version: ` + value", Gauge1.Version)
With .Items.Add("<c>ExGauge<br><c>Inside<br><c>Clock")
.BrowseType = exBrowseItemCustom
.BrowseCustomType = exRadialCustomGauge
.BrowseCustom(exRadialCustomGaugeHandle) = Gauge1.hWnd
End With
.EndUpdate
End With