Enumeration type for the different types of adjacency.
Namespace: yWorks.yFiles.UI.ModelAssembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)
Syntax
| C# |
|---|
[FlagsAttribute] public enum AdjacencyTypes |
| Visual Basic |
|---|
<FlagsAttribute> _ Public Enumeration AdjacencyTypes |
Members
| Member name | Description | ||
|---|---|---|---|
| None | 0 | Neither Incoming nor Outgoing | |
| Incoming | 1 | The constant for incoming edges. An edge that is incoming at its owner has the owner as its target. | |
| Outgoing | 2 | The constant for outgoing edges. An edge that is outgoing from its owner has the owner as its source. | |
| All | 3 | Both Incoming and Outgoing |
Remarks
Directed edges in a graph can be either incoming, outgoing, or both.