

| Type | Description | |||
| Index as IndexExtEnum | 
A Long expression that defines the index of the part that composes the EBN to be
accessed / changed. 
 The following screen shot shows where you can find Index of the parts: 
 The screen shot shows that the EBN contains 11 elements, so in this case the Index starts at 0 ( root element ) and ends on 10.  | |||
| Property as BackgroundExtPropertyEnum | A BackgroundExtPropertyEnum expression that specifies the property to be changed as explained bellow. | |||
| Variant | A Variant expression that defines the part's value. The Type of the expression depending on the Property parameter as explained bellow. | 
You can access/define/change the following UI properties of the element:
For instance, having the BodyBackgroundExt on "bottom[50%,pattern=6,frame]"
we got:

so let's change the percent of 50% to 25% like BackgroundExtValue(1,2) on "25%", where 1 indicates the first element after root, and 2 indicates the exClientExt property, we get:

In VB you should have the following syntax:
.BodyBackgroundExt = "bottom[50%,pattern=6,frame]" .BackgroundExtValue(exIndexExt1, exClientExt) = "25%"