Reference Guide
interface IValueList
IValueList is an interface to a collection of floating point values.
Definition
- interface IValueList : IDispatch
-
- {
-
-
- [propget]
-
- HRESULT Count([out, retval] long* rval);
-
- [id(0), propget]
-
- HRESULT Item([in] long index, [out, retval] double* rval);
- };
-
Description
[propget]
HRESULT Count([out, retval] long* rval); |
The number of values in the collection.
|
[id(0), propget]
HRESULT Item([in] long index,[out, retval] double* rval); |
Given an integer index, returns one of the values.
|
|