Close

Relief for ODA Team in Ukraine

Learn more
ODA Drawings SDK
VSEDGELEX
Syntax
C++
OdInt16 VSEDGELEX;
Type
OdInt16
Initial value
(–6)
Read-Only
No
Saved In
Nondatabase, Quasi variable
Versions
2011+

 

The VSEDGELEX variable allows edges to extend beyond their intersection for 3D entities. The admissible range is 1 to 100 pixels. A negative value turns off the line extensions effect, but the variable continues to store the previous setting. 

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"VSEDGELEX"); OdInt16 effect = pRb->getInt16(); odPrintConsoleString(L"nLine extensions effect = %d", effect);

For example, to set the value:

OdRusBufPtr pRb = OdResBuf::newRb(OdResBuf::kRtInt16, 10); pDb->setSysVar(L"VSEDGELEX", pRb);

 

File: QuasiVarDefs.h 

Module: API Reference 

Copyright © 2002-2022. Open Design Alliance All rights reserved.