2.2.4.28.31 MatrixObject::IsImageView

Description

Determine if MatrixObject's view mode is "Image Mode" or "Data Mode".

Syntax

BOOL IsImageView( )

Parameters

Return

return TRUE if view mode is "Image Mode", otherwise FALSE as "Data Mode".

Examples

EX1

void    MatrixObject_IsImageView_Ex1()
{
    MatrixPage mp = Project.MatrixPages(0);
    if(!mp)
        return;
    
    MatrixObject mo(mp.GetName(), 0);
    if(mo.IsImageView())
        printf("MatrixObject's view mode is \"Image Mode\"");
}

Remark

See Also

Header to Include

origin.h