Enumeration type for the different types of adjacency.
Namespace: yWorks.yFiles.UI.ModelAssembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.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.