property Item.BrowseCustom(Property as RadialCustomPropertyEnum) as Variant
Gets or sets a value for specified property, when browsing custom data.

TypeDescription
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.
The BrowseCustom property gets or sets a value for specified property, when browsing custom control. The BrowseType property specifies what the item displays, when the user clicks/browses it.  The BrowseCustomType property indicates the custom object to be shown when the user clicks/browses the item. The BrowseCustom property should be used when the BrowseType property is  exBrowseItemCustom.

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