__interface IWizardPageContainer : IUnknown

{

    ILogger * Logger(void);

    IPropertyBag * Properties(void);

    HRESULT CreateInstance(LPCTSTR type, [out] IUnknown **ppInstance);

    HRESULT GetService(REFIID iid, [out] IUnknown **ppInstance);

    HRESULT ReplaceVariables(LPCTSTR source, [out] LPBSTR pDest);

    HRESULT GotoPage(LPCTSTR pageName);

    int ShowMessageBox(LPCTSTR message, LPCTSTR lpCaption, UINT uType);

    BOOL InPreview(void);

    HWND GetHwnd(void);

};

Related Topics

Wizard Page Interfaces
Overview
ILogger * Logger(void)
IPropertyBag * Properties(void)
HRESULT CreateInstance(LPCTSTR type, [out] IUnknown **ppInstance)
HRESULT GetService(REFIID iid, [out] IUnknown **ppInstance)
HRESULT ReplaceVariables(LPCTSTR source, [out] LPBSTR pDest)
HRESULT GotoPage(LPCTSTR pageName)
int ShowMessageBox(LPCTSTR message, LPCTSTR lpCaption, UINT uType)
BOOL InPreview(void)
HWND GetHwnd(void)