The VSEDGES variable stores the type of edges which are used for displaying in the current viewport. The value can be:
Value
Description
0
Edges are not displayed
1
Isolines of edges are displayed
2
Facet edges are displayed
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"VSEDGES");
OdInt16 type = pRb->getInt16();
odPrintConsoleString(L"nEdge type = %d", type);