property RadialMenu.ArrowImage as Variant
Specifies the graphics ( image, icon, picture ) to be shown on the sub-items zone, for items that contains child items or sub items.

TypeDescription
Variant A VARIANT expression that specifies the icon/picture/image to be displayed as described:
  • A String expression indicates:
    • a name of a picture file in the PicturePath folder. For instance, ArrowImage = "favorites.png", loads the favorites.png file if found in the PicturePath folder.
    • a picture file including its absolute path. For instance, ArrowImage = "C:\Program Files\Exontrol\ExRadialMenu\Sample\Images\favorites.png", loads the favorites.png file from absolute path
    • a key of the HTML picture, previously loaded by the HTMLPicture method. For instance, ArrowImage = "pic1", loads the HTML picture with the key pic1, so the pic1 should be load previously with a HTMLPicture call like HTMLPicture("pic1") = "C:\Program Files\Exontrol\ExRadialMenu\Sample\Images\favorites.png"
    • an encode BASE64 string of a picture file. The Exontrol's ExImages Tool encode/decode BASE64 strings from/to pictures. In this case, the string starts with "gB..", "gC.." and so on.
  • A Picture object that indicates the picture to be displayed. For instance, ArrowImage = LoadPicture("picture.jpg")
  • a long/string expression that specifies the index of the icon to be displayed (0-based). The Images method loads icons into the control. Use the ReplaceIcon method to add, remove or clear icons in the control's images collection.

If no icon/picture/image is found, the object displays no icon/picture/image.

By default, the ArrowImage property is "arrow" (). The ArrowImage property specifies the graphics ( image, icon, picture ) to be shown on the sub-items zone, for items that contains child items or sub items.  Use the Add / ToString method to add new items to the control. The RadialLineColor(exRadialItemsChildren) specifies the color to show the items with children, in the items portion of the control. The RadialLineColor(exRadialSubItemsChildren) specifies the color to show the items with children, in the sub-items portion of the control.

The following screen shot shows the items with children with a different color and a different arrow: