Window::IsIconic

Description

This function checks if window is minimized.

Syntax

BOOL IsIconic( )

Parameters

Return

Return TRUE if the window is minimized, otherwise, FALSE..

Examples

EX1

int Window_IsIconic_ex1()
{
    WorksheetPage myDlg = Project.WorksheetPages(0);
    Window winDlg = myDlg.GetWindow();
    if (winDlg.IsIconic())
        out_str("window is minimized.");
    else
        out_str("window is not minimized.");
    return 0;
}

Remark

See Also

Header to Include

origin.h