Difference between revisions of "RPC HELP DLL ExportFN RPCBMultItemGet"
From VistApedia
(Created page with " RPC Broker Help Home DLL Interface Home <h2>RPCBMultItemGet Function</h2> [[RPC_HELP_DLL_ExportFN_RPCBMultItemGet_E...") |
|||
Line 14: | Line 14: | ||
<h3>Parameter Description</h3> | <h3>Parameter Description</h3> | ||
− | * RPCBroker Handle of the [[RPC_HELP_TRPCBroker|TRPCBroker]] component. | + | * '''RPCBroker''' Handle of the [[RPC_HELP_TRPCBroker|TRPCBroker]] component. |
− | * ParamIndex Integer index of the parameter that contains the [[RPC_HELP_TParamRecord_Mult_Property|Mult]] property. | + | * '''ParamIndex''' Integer index of the parameter that contains the [[RPC_HELP_TParamRecord_Mult_Property|Mult]] property. |
− | * Subscript Null-terminated string identifying the [[RPC_HELP_TParamRecord_Mult_Property|Mult]] element to get. | + | * '''Subscript''' Null-terminated string identifying the [[RPC_HELP_TParamRecord_Mult_Property|Mult]] element 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 [[RPC_HELP_TParamRecord_Mult_Property|Mult]] property item. | + | * '''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 [[RPC_HELP_TParamRecord_Mult_Property|Mult]] property item. |
NOTE: See [[RPC_HELP_Executing_RPC_RPC_Limits|RPC Limits]] for information about the size of parameters and results that can be passed to and returned from the [[RPC_HELP_TRPCBroker|TRPCBroker]] component. | NOTE: See [[RPC_HELP_Executing_RPC_RPC_Limits|RPC Limits]] for information about the size of parameters and results that can be passed to and returned from the [[RPC_HELP_TRPCBroker|TRPCBroker]] component. |
Latest revision as of 14:32, 8 July 2015
RPCBMultItemGet Function
Returns a requested item in a TRPCBroker Param property's Mult property.
Declarations
Delphi -- procedure RPCBMultItemGet (const RPCBroker: TRPCBroker; ParamIndex: integer; Subscript, Value: PChar); C -- void (__stdcall *RPCBMultItemGet) (void *, int, char *, char *); C++ -- void RPCBMultItemGet ( int i, char * s, char * t); VB -- Sub RPCBMultItemGet (ByVal intRPCBHandle As Long, ByVal intParIdx As Integer, ByVal strSubscript As String, ByVal strValue As String)
Parameter Description
- RPCBroker Handle of the TRPCBroker component.
- ParamIndex Integer index of the parameter that contains the Mult property.
- Subscript Null-terminated string identifying the Mult element 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 item.
NOTE: See RPC Limits for information about the size of parameters and results that can be passed to and returned from the TRPCBroker component.