System.Bindings.EvalProtocol.IGroup.Add

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Add: Integer; overload;
function Add(out Wrapper: IInterface): Integer; overload;

C++

virtual int __fastcall Add() = 0 /* overload */;
virtual int __fastcall Add(/* out */ System::_di_IInterface &Wrapper) = 0 /* overload */;

Properties

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

Description

Adds a wrapper to the available wrappers list.

The Add method adds a wrapper to the available wrappers list. There are two Add overloaded methods.

The first Add overloaded method adds a wrapper and returns its index.

The second Add overloaded method adds a wrapper, returns its index, and also returns the added wrapper itself in the Wrapper parameter.

See Also