System.Bindings.CustomScope.TCustomScope
Delphi
TCustomScope = class abstract(TInterfacedObject, IScope, ICustomScope)
C++
class PASCALIMPLEMENTATION TCustomScope : public System::TInterfacedObject
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.Bindings.CustomScope.pas System.Bindings.CustomScope.hpp |
System.Bindings.CustomScope | System.Bindings.CustomScope |
Description
Base class for every custom scope descendant.
TCustomScope is an abstract class that is the base class for every custom scope descendant. A custom scope permits you to add new members (properties and/or methods) that do not exist in an object that already exists. In this way, these new members can be used within an expression.
Tip: Every TCustomScope descendant must implement the DoLookup method.