Minimum Origin Version Required: Origin 2017 SR0
Get the path to the installed app's icon file.
string GetIconPath( BOOL bLarge = TRUE )
The path of the installed app's icon file.
void OrgApps_GetIconPath_ex1() { 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(" Icon Path: %s\r\n", app.GetIconPath()); } }
origin.h