GraphNodeIsMarkedAs Method
|
Checks whether all the specified set flag bits
are set in this GraphNode object.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public bool IsMarkedAs(
int flag
)
Public Function IsMarkedAs (
flag As Integer
) As Boolean
public:
bool IsMarkedAs(
int flag
)
member IsMarkedAs :
flag : int -> bool
Parameters
- flag Int32
- [in] Flag bits to check.
Return Value
Boolean
true if and only if the all the specified flag bits are set;
otherwise the method returns false.
Remarks
flags must be a
combination of one or more of the following: Name Value Description
kNone 0x00 None. kVisited 0x01 Used internally by
OdDbGraph::findCycles() and while traversing a graphs with cycles.
kOutsideRefed 0x02 Used internally by Xref detach. kSelected 0x04
User selection. Set by getOutgoing. kInList 0x08 Is in list. Set by
getOutgoing. kListAll 0x0E Used to clear kSelected, kInList,
kOutsideRefed. kFirstLevel 0x10 The node is connected to the root
node. Read Only. kUnresTree 0x20 The tree is unresolved. kAll 0x2F
Used to clear all but kFirstLevel.
See Also