TIDERegisteredComps Class
Collection that holds all components registered in the IDE engine and available for use in the form designer palette.
Remarks
TIDERegisteredComps is a collections that holds information about all components registered in the engine component. The list of registered components will be used by TIDEPaletteToolbar and TIDEPaletteButtons component to display the list of components available to be used in the designer.
Syntax
Unit: IDEMain
TIDERegisteredComps = class(TOwnedCollection);
Methods
| Name | Description |
|---|---|
| Add | Adds a new TIDERegisteredComp object in the collection. You don't need to call this method, a better alternative is to use TIDEEngine.RegisterComponent. |
| FindByClass | Find the TIDERegisteredComp object that holds information about the registered component which class is specified by AClass. |
| GetClassUnits | Retrieves in AUnits the names of units required by the component class specified by AClass. See TIDERegisteredComp.Units for more info. |
| GetPageNames | Fills the AStrings with a distinct list of all pages (categories) referenced by the registered components. |
Properties
| Name | Description |
|---|---|
| Items[Index] | Provides indexed access to all TIDERegisteredComp objects in the collection. |