2.2.4.47.4 WorksheetPage::m_bIsExcel

ClassName

WorksheetPage

AccessType

public

Name

m_bIsExcel

Declaration

BOOL m_bIsExcel

Remark

Examples

EX1

// For this example to run an Excel window should be active in Origin
void WorksheetPage_m_bIsExcel_ex1()
{
    WorksheetPage wp = Project.ActiveLayer().GetPage();
    if( !wp )
    {
        out_str("Invalid page!");
        return;
    }
    
    BOOL bOK = wp.m_bIsExcel;
    out_int("OK = ", bOK);
}

Description

Read-only property. It is true if the page object is an Excel page.

Header to Include

origin.h

See Also

Reference