Getting property value:
Automation:
uint
value = obj.
Length;
Native (C++):
HRESULT
get_
Length
(
[out, retval]
unsigned long *
ppval)
;
Setting property value:
Automation:
obj.
Length = Value;
Native (C++):
HRESULT
put_
Length
(
[in]
unsigned long
ppval)
;
Parameters
ppvalPointer to a variable to receive the sequence length.Return Value
Automation:Sequence length, in bytes.Native:
S_OK or standard OLE error code.
Native:
S_OK or standard OLE error code.