System.Classes.TClassFinder.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AClass: TPersistentClass = nil; AIncludeActiveGroups: Boolean = False);

C++

__fastcall TClassFinder(TPersistentClass AClass, bool AIncludeActiveGroups);

Properties

Type Visibility Source Unit Parent
constructor public
System.Classes.pas
System.Classes.hpp
System.Classes TClassFinder

Description

Creates a TClassFinder class instance.

Call Create to instantiate a TClassFinder object at runtime.

The AClass optional parameter limits the scope of returned classes to the specified class and its ancestors. A nil value does not limit the returned classes.

If true, the AIncludeActiveGroups optional parameter will append to the list of classes those that are active in the current application.

See Also