Clears the specified set flag bits in the
GraphNode objects of this Graph object.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public void ClearAll(
byte flags
)
Public Sub ClearAll (
flags As Byte
)
public:
void ClearAll(
unsigned char flags
)
member ClearAll :
flags : byte -> unit
Parameters
- flags Byte
- [in] Handle to a GraphNode object at the start of the
edge.
Remarks
flags must be a
combination of one or more of the following: Name Value Description
OdDbGraphNode::kNone 0x00 None. OdDbGraphNode::kVisited 0x01 Used
internally by OdDbGraph::findCycles() and while traversing a graphs
with cycles. OdDbGraphNode::kOutsideRefed 0x02 Used internally by
Xref detach. OdDbGraphNode::kSelected 0x04 User selection. Set by
getOutgoing. OdDbGraphNode::kInList 0x08 Is in list. Set by
getOutgoing. OdDbGraphNode::kListAll 0x0E Used to clear kSelected,
kInList, kOutsideRefed. OdDbGraphNode::kFirstLevel 0x10 The node is
connected to the root node. Read Only. OdDbGraphNode::kUnresTree
0x20 The tree is unresolved. OdDbGraphNode::kAll 0x2F Used to clear
all but kFirstLevel.
See Also