System.Bindings.Methods.TBindingMethodsFactory.GetMethodScope

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function GetMethodScope: IScope; overload;//returns all
class function GetMethodScope(MethodNames: array of string): IScope; overload;

C++

__classmethod System::Bindings::Evalprotocol::_di_IScope __fastcall GetMethodScope()/* overload */;
__classmethod System::Bindings::Evalprotocol::_di_IScope __fastcall GetMethodScope(System::UnicodeString *MethodNames, const int MethodNames_High)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Bindings.Methods.pas
System.Bindings.Methods.hpp
System.Bindings.Methods TBindingMethodsFactory

Description

Returns the scope of the specified methods.

The GetMethodScope method is used to return the scope of the specified methods. There are two GetMethodScope overloaded methods.

The first GetMethodScope overloaded method accepts no parameters and returns the scope of all registered methods.

The second GetMethodScope overloaded method takes in an array of method names (MethodNames) and returns the scope for them.

See Also