NodeEventArgs
open class NodeEventArgs
A class that specifies arguments for actions performed on DiagramNode objects.
-
Initializes a new instance of the NodeEventArgs class.
Declaration
Swift
public init(node: DiagramNode)
Parameters
node
The DiagramNode related to the event.
Return Value
The newly created NodeEventArgs object.
-
Initializes a new instance of the NodeEventArgs class.
Declaration
Swift
public init(node: DiagramNode, pointerPosition: Point, adjustmentHandle: NodeHandleType)
Parameters
node
The DiagramNode related to the event.
pointerPosition
The position of the pointer when the event occurred.
adjustmentHandle
The adjustment handle dragged by the user.
Return Value
The newly created NodeEventArgs object.
-
The DiagramNode related to the event.
Declaration
Swift
open unowned var node: DiagramNode
-
The adjustment handle , dragged by the user, which generates the event with the current NodeEventArgs.
Declaration
Swift
open var adjustmentHandle: NodeHandleType