RPC HELP DLL ExportFN RPCBMultSortedSet
From VistApedia
Revision as of 14:37, 8 July 2015 by Kdtop (talk | contribs) (Created page with " RPC Broker Help Home DLL Interface Home <h2>RPCBMultSortedSet Function</h2> [[RPC_HELP_DLL_ExportFN_RPCBMultSortedS...")
RPCBMultSortedSet Function
Sets the Sorted property of a Mult property. In essence, sorts and keeps the Mult property sorted or just leaves it in the order it is populated.
Declarations
Delphi -- procedure RPCBMultSortedSet(const RPCBroker: TRPCBroker; ParamIndex: integer; Value: boolean); C -- void (__stdcall *RPCBMultSortedSet) (void *, int, bool); C++ -- void RPCBMultSortedSet (int i, bool v); VB -- Sub RPCBMultSortedSet (ByVal intRPCBHandle As Long, ByVal intParIdx As Integer, ByVal intValue As Integer)
Parameter Description
- RPCBroker Handle of the TRPCBroker component.
- ParamIndex Integer index of the parameter that contains the Mult property.
- Value Can be either a Boolean or, if the calling application language does not support Boolean type, can be an integer. True or 1 will sort the Mult and keep it sorted thereafter when other elements are added. False or 0 will not sort the Mult and the elements will be stored in the order they are added.