Close

Relief for ODA Team in Ukraine

Learn more
ODA Drawings SDK
VSAZEBRASIZE
Syntax
C++
OdInt16 VSAZEBRASIZE;
Type
OdInt16
Initial value
45
Range
32768 ... 32767
Read-Only
No
Saved In
Database
Versions
2013+

 

The VSAZEBRASIZE variable stores the width of the zebra streaks which are displayed when zebra analysis is performed. The value can be in the range 1 to 100. 

 

Access Methods
OdDbDatabase::getSysVar()
OdDbDatabase::setSysVar()
 
OdDbDatabase::getVSAZEBRASIZE()
OdDbDatabase::setVSAZEBRASIZE()

 

For example, to get the value:

OdRusBufPtr pRb = pDb->getSysVar(L"VSAZEBRASIZE"); OdInt16 width = pRb->getInt16(); odPrintConsoleString(L"nZebra streak width = %d", width); // or // odPrintConsoleString(L"nZebra streak width = %d", pDb->getVSAZEBRASIZE());

For example, to set the value:

OdRusBufPtr pRb = OdResBuf::newRb(OdResBuf::kRtInt16, 30); pDb->setSysVar(L"VSAZEBRASIZE", pRb); // or // pDb->setVSAZEBRASIZE(60);

 

File: SysVarDefs.h 

Module: API Reference 

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