The VSINTERSECTIONEDGES variable determines whether intersection edges are displayed in the visual style for the current viewport. The value can be:
Value
Description
0
Display off
1
Display on
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"VSINTERSECTIONEDGES");
OdInt16 status = pRb->getInt16();
odPrintConsoleString(L"nIntersection display status = %d", status);