__interface IListView : IControl

{

    int AddItem([in] LPCTSTR text);

    int AddColumn(int width, [in] LPCTSTR text);

    HRESULT SetSubItem(int index, int column, [in] LPCTSTR text);

    int GetWidth(void);

    void SetExtendedStyle(DWORD style);

    int GetSelectedItem(void);

    HRESULT SelectItem(int index);

    BOOL IsItemChecked(int index);

    int GetItemCount(void);

    HRESULT CreateImageList(int width, int height, UINT flags);

    int AddImage(HINSTANCE hInstance, int resourceId);

    HRESULT SetImage(int index, int imageIndex);

    HRESULT Clear(void);

};

Related Topics

Wizard Page Interfaces
Overview
int AddItem([in] LPCTSTR text)
int AddColumn(int width, [in] LPCTSTR text)
HRESULT SetSubItem(int index, int column, [in] LPCTSTR text)
int GetWidth(void)
void SetExtendedStyle(DWORD style)
int GetSelectedItem(void)
HRESULT SelectItem(int index)
BOOL IsItemChecked(int index)
int GetItemCount(void)
HRESULT CreateImageList(int width, int height, UINT flags)
int AddImage(HINSTANCE hInstance, int resourceId)
HRESULT SetImage(int index, int imageIndex)
HRESULT Clear(void)