Close

Relief for ODA Team in Ukraine

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

 

The VSINTERSECTIONLTYPE variable stores the linetype number defining the shape of intersection lines in the visual style for the current viewport. The value can be: 

 

Value
Description
1
Solid line
2
Dashed line
3
Dotted line
4
Short dashed line
5
Medium dashed line
6
Long dashed line
7
Double short dashed line
8
Double medium dashed line
9
Double long dashed line
10
Medium long dashed line
11
Sparse dotted line

 

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"VSINTERSECTIONLTYPE"); OdInt16 linetype = pRb->getInt16(); odPrintConsoleString(L"nIntersection linetype = %d", linetype);

For example, to set the value:

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

 

File: QuasiVarDefs.h 

Module: API Reference 

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