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