System.Bindings.EvalProtocol.TCustomWrapperType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCustomWrapperType = (cwtProperty, cwtMethod, cwtIndexedProperty);

C++

enum DECLSPEC_DENUM TCustomWrapperType : unsigned char { cwtProperty, cwtMethod, cwtIndexedProperty };

Properties

Type Visibility Source Unit Parent
enum public
System.Bindings.EvalProtocol.pas
System.Bindings.EvalProtocol.hpp
System.Bindings.EvalProtocol System.Bindings.EvalProtocol

Description

Enumeration of custom wrapper types.

TCustomWrapperType is an enumeration of custom wrapper types. The type of the custom wrapper is given by the type of the wrapped fake object member. Possible types are listed in the following table:

Wrapper Type Meaning
cwtProperty Custom property wrapper
cwtMethod Custom method wrapper
cwtIndexedProperty Custom indexed property wrapper

See Also