Returns the inner object.
[ InnerObject = ] Object.Object
The Object property syntax has the following parts:
|
Name |
Type |
Description |
|
Object |
A control |
A control object |
|
InnerObject |
Object |
The inner object. |
The Object extended property is used when an extended property has the same name as an internal property of a control, for example, for a third-party control:
obcontrolobject1.Visible (the extended property)
obcontrolobject1.Object.Visible (the internal property)
The following statement returns the visible property of the inner Object of the ASlider control:
bsld1Visible = sld1.Object.Visible
All controls.