Can I disable mouse regions defined in the database at runtime?
Enabling and disabling of gauge mouse regions is supported in the 4.13 version Use the following API: // Mouse region API AGI_DECL agiRet WINAPI EnableGaugeMouseRegion(HAGI hGauge, const char* regionName); AGI_DECL agiRet WINAPI DisableGaugeMouseRegion(HAGI hGauge, const char* regionName); AGI_DECL agiRet WINAPI EnableAllGaugeMouseRegions(HAGI hGauge); AGI_DECL agiRet WINAPI DisableAllGaugeMouseRegions(HAGI hGauge); The hGauge is provided to the DLC by the function getOwnerGaugeHagi() or by simply using the base class protected member _hParentGauge.