The VSHALOGAP variable stores the aureole gap in the visual style for the current viewport. The value can be in the range 0 to 100.
Note: An existing visual style is not changed when the system variable gets a new value. Temporary visual style will be created as a clone of visual style assigned for current viewport.
Access Methods
OdDbDatabase::getSysVar()
OdDbDatabase::setSysVar()
For example, to get the value:
OdRusBufPtr pRb = pDb->getSysVar(L"VSHALOGAP");
OdInt16 gap = pRb->getInt16();
odPrintConsoleString(L"nAureole gap = %d", gap);