Close

Relief for ODA Team in Ukraine

Learn more
ODA Drawings SDK
VSEDGESMOOTH
Syntax
C++
OdInt16 VSEDGESMOOTH;
Type
OdInt16
Initial value
1
Read-Only
No
Saved In
Nondatabase, Quasi variable
Versions
2007+

 

The VSEDGESMOOTH variable stores the angle at which edges are displayed in the current viewport. The value can be in the range 0 to 180 degrees. 

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"VSEDGESMOOTH"); OdInt16 angle = pRb->getInt16(); odPrintConsoleString(L"nAngle = %d", angle);

For example, to set the value:

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

 

File: QuasiVarDefs.h 

Module: API Reference 

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