Getting property value:
Automation:
byte
value = obj.
Value
(
[in]
uint
Index)
;
Native (C++):
HRESULT
get_
Value
(
[in]
unsigned long
Index,
[out, retval]
unsigned char *
pval)
;
Setting property value:
Automation:
obj.
Value
(
[in]
uint
Index)
= Value;
Native (C++):
HRESULT
put_
Value
(
[in]
unsigned long
Index,
[in]
unsigned char
pval)
;
Parameters
IndexPosition of the byte to retrieve. Must not be equal or larger than the current sequence size.pvalPointer to a variable to receive the retrieved value.Return Value
Automation:Returns a byte from a sequence located on the given position.Native:
S_OK or standard OLE error code.
Native:
S_OK or standard OLE error code.