Automation:
ISequence
CreateSubSequence
(
[in]
uint
Index,
[in]
uint
Length)
;
Native (C++):
HRESULT
CreateSubSequence
(
[in]
unsigned long
Index,
[in]
unsigned long
Length,
[out, retval]
ISequence * *
ppSequence)
;
Parameters
IndexStarting index of a subsequence.LengthLength of the subsequence.ppSequenceA pointer to variable that receives the new subsequence.Return Value
Automation:A resulting subsequence.Native:
S_OK or standard OLE error code.