RPC HELP DLL ExportFN RPCBMultPropGet

From VistApedia
Revision as of 14:54, 8 July 2015 by Kdtop (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

RPC Broker Help Home

DLL Interface Home

RPCBMultPropGet Function

Example

Returns a selected property value of a TRPCBroker Param property's Mult property.

Declarations

   Delphi -- procedure RPCBMultPropGet(const RPCBroker: TRPCBroker; ParamIndex: integer; Prop,Value: PChar);
   C -- void (__stdcall *RPCBMultPropGet) (void *, int, char *, char *);
   C++ -- void RPCBMultPropGet (int i , char * s, char * t);
   VB -- Sub RPCBMultPropGet (ByVal intRPCBHandle As Long, ByVal intParIdx As Integer, ByVal strProp As String, ByRef strValue As String)

Parameter Description

  • RPCBroker Handle of the TRPCBroker component.
  • ParamIndex Integer index of the parameter that contains the Mult property.
  • Prop Null-terminated string identifying the name of the Mult property to get.
  • Value An empty buffer that the calling application must create (allocate memory for) before making this call. This buffer will be filled with value of the Mult property that is in the Prop.

NOTE: See RPC Limits for information about the size of parameters and results that can be passed to and returned from the TRPCBroker component.