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 which 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.