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
nodeThe 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
nodeThe DiagramNode related to the event.
pointerPositionThe position of the pointer when the event occurred.
adjustmentHandleThe 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
NodeEventArgs Class Reference