Defines edge types distinguished by the MultiPageLayout.
Type Details
- yFiles module
- algorithms
See Also
Constants
An edge type that specifies a connector edge.
Remarks
An edge is called connector if it is connected to a connector node (a node of type CONNECTOR), i.e., it represents an edge of the input graph whose endpoints lie on different pages.
See Also
An edge type that specifies a proxy edge.
Remarks
An edge is called proxy if it is connected to at least one proxy node and the other node isn't a connector or proxy reference node. A proxy node has type PROXY) and represents a proxy of an original node lying on another page.
See Also
Note that an edge between a proxy node and a connector/proxy reference node is always of type CONNECTOR and PROXY_REFERENCE respectively.
An edge type that specifies a proxy reference edge.
Remarks
An edge is called proxy reference if it is connected to a proxy reference node (a node of type PROXY_REFERENCE), i.e., a node that refers to a proxy of an original node lying on another page.
See Also
An edge type that specifies a regular edge.
Remarks
An edge is called regular if it does not belong to any other type.
See Also
Static Methods
Converts the given argument to an enum constant of this enum type.
Remarks
Most notably, this method can convert an enum constant's name into the enum constant itself.
Parameters
options - Object
A map of options to pass to the method.
A map of options to pass to the method.
- value - MultiPageEdgeType
- The value to convert to an enum constant.
Returns
- ↪MultiPageEdgeType
- The enum constant that corresponds to the given argument.
Returns the name of the given enum constant.
Parameters
options - Object
A map of options to pass to the method.
A map of options to pass to the method.
- value - MultiPageEdgeType
- The numeric value of an enum constant.
Returns
- ↪string
- The name of the enum constant.
Throws
- Exception({ name: 'Error' })
- If this type is a flags enums, and the provided value doesn't correspond to a single enum constant, or if this enum type contains no constant of the given numeric value.