Vcl.AxCtrls.TPropertyPage.OleObjects

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OleObjects: TInterfaceList read FOleObjects write FOleObjects;

C++

__property System::Classes::TInterfaceList* OleObjects = {read=FOleObjects, write=FOleObjects};

Properties

Type Visibility Source Unit Parent
property public
Vcl.AxCtrls.pas
Vcl.AxCtrls.hpp
Vcl.AxCtrls TPropertyPage

Description

An array of Dispatch IDs for each ActiveX control being edited by the page.

Property pages have the ability to be "hooked up to" multiple ActiveX controls, usually by multi-selecting the ActiveX controls in the form designer, and right clicking to invoke the property pages. Cast the value of an entry from the OleObjects Items property to the appropriate interface, such as IUnknown or IDispatch, and use the methods of the interface to access the property values and methods of the control.

See Also