Initializes a new instance.
Namespace: TreeLayoutHelperAssembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
C# |
---|
public NodeWithBounds( TNode node, int x, int y, int width, int height ) |
Visual Basic |
---|
Public Sub New ( _ node As TNode, _ x As Integer, _ y As Integer, _ width As Integer, _ height As Integer _ ) |
Visual C++ |
---|
public: NodeWithBounds( TNode node, int x, int y, int width, int height ) |
J# |
---|
public NodeWithBounds( TNode node, int x, int y, int width, int height ) |
JScript |
---|
public function NodeWithBounds( node : TNode, x : int, y : int, width : int, height : int ) |
JavaScript |
---|
TreeLayoutHelper.NodeWithBounds = function(node, x, y, width, height); |
Parameters
- node
- Type: TNode
The tree node.
- x
- Type: System..::..Int32
The horizontal position of the node.
- y
- Type: System..::..Int32
The vertical position of the node.
- width
- Type: System..::..Int32
The width of the node.
- height
- Type: System..::..Int32
The height of the node.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | node is nullNothingnullptra null reference (Nothing in Visual Basic). |