Page 1 of 1

Posted: 15 Sep 2018, 22:15
by oli_lab
Hi !
How to set the background color of a module ? I notice that it is in the global settings of the module, but how to set it to a value at init ?

thank you !

Olivar

Posted: 16 Sep 2018, 07:14
by 23fx23
might be wrong but think it can only be set in onGetmoduleinfo

void MY_MODULE::onGetModuleInfo(MasterInfo* pMasterInfo, ModuleInfo* pModuleInfo)
{
pModuleInfo->BackColor = xxxxx;
}

Posted: 16 Sep 2018, 08:27
by oli_lab
23fx23 wrote:might be wrong}
You were right !

thank you

Olivar