2.2.7.5.11 OrgAppInfo::ShowApp

ClassName

OrgAppInfo

AccessType

public

Name

ShowApp

Declaration

BOOL	ShowApp

Remark

Examples

EX1

void OrgAppInfo_ShowApp_EX()
{
    foreach(OrgAppInfo app in OrgApps.InstalledApps)
    {
        if (app.ID <= 0)
            continue;
        printf("[ID: %d]\r\n", app.ID);
        printf("  Name: %s\r\n", app.Name);
        printf("  Show: %s\r\n", app.ShowApp? "yes" : "no");
    }
}

Description

To indicate whether an app shows on Apps Gallery

Header to Include

origin.h

See Also

Reference