Describes the type of a IHandle.
This type can be used by the rendering engine to render
different types of handles differently.
Namespace: yWorks.Canvas.InputAssembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)
Syntax
| C# |
|---|
[FlagsAttribute] public enum HandleType |
| Visual Basic |
|---|
<FlagsAttribute> _ Public Enumeration HandleType |
Members
| Member name | Description | ||
|---|---|---|---|
| Invisible | 0 | A handle which serves a general purpose but should not be displayed. | |
| Default | 1 | A default handle which serves a general purpose. | |
| Resize | 2 | A handle which can be used to resize something. | |
| Rotate | 4 | A handle which can be used to rotate something. | |
| Move | 8 | A handle which can be used to move something. | |
| Shear | 16 | A handle which can be used to shear an object. | |
| Warp | 32 | A handle which can be used to warp an object. | |
| TypeMask | 255 | A bitmask that can be used to query the basic type of a handle type. | |
| Variant1 | 0 | A default variant modifier that decorates a basic type. | |
| Variant2 | 256 | The second variant modifier that decorates a basic type. | |
| Variant3 | 512 | The third variant modifier that decorates a basic type. | |
| Variant4 | 768 | The forth variant modifier that decorates a basic type. | |
| VariantMask | 768 | A bitmask that can be used to query the variant of a basic handle type. | |
| OffsetNorth | 4096 | A modifier that can be used to tell the rendering engine to render the visual representation of this handle with an offset to the north. | |
| OffsetEast | 8192 | A modifier that can be used to tell the rendering engine to render the visual representation of this handle with an offset to the east. | |
| OffsetSouth | 16384 | A modifier that can be used to tell the rendering engine to render the visual representation of this handle with an offset to the south. | |
| OffsetWest | 32768 | A modifier that can be used to tell the rendering engine to render the visual representation of this handle with an offset to the west. | |
| OffsetMask | 61440 | A bitmask that can be used to query the offsets of a basic handle type. |