An enumeration for use in various properties that can take a bitwise combination of item types that make up an IGraph

Namespace: yWorks.yFiles.UI.Model
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2

Syntax

C#
[FlagsAttribute]
public enum GraphItemTypes
Visual Basic
<FlagsAttribute> _
Public Enumeration GraphItemTypes

Members

Member nameDescription
Node1 Constant for nodes.
Edge2 Constant for edges.
NodeLabel4 Constant for node labels.
EdgeLabel8 Constant for edge labels.
Port16 Constant for ports.
Label12 Constant for all kinds of labels.
LabeledItem3 Constant for all kinds of ILabeledItem.
Bend32 Constant for node bends.
All63 Constant for all item types.
None0 Constant for no item type.
Is Determines whether the item is of the specified type.
ContainsAll Determines whether the specified items collection contains all of the types described by types.
Contains Determines whether the specified items collection contains any of the types described by types.
NotContains Determines whether the specified items collection contains none of the types described by types.
ContainsAll Determines whether the specified items collection contains all of the types described by types.
Contains Determines whether the specified items collection contains any of the types described by types.
NotContains Determines whether the specified items collection contains none of the types described by types.
ContainsAll Determines whether the specified items collection contains all of the types described by types.
Contains Determines whether the specified items collection contains any of the types described by types.
NotContains Determines whether the specified items collection contains none of the types described by types.

Remarks

The enumeration can be used to create bitwise combination of the types.

See Also