Declaration
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.
Remarks
Retrieve or change the current sequence length. Sequence length is expressed in bytes. When you change the sequence length, it is either truncated or extended. If the sequence was extended, it may contain garbage.