Draws a frame.

Namespace: TreeLayoutHelper
Assembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
void DrawFrame(
	TNode frameNode,
	int x,
	int y,
	int width,
	int height,
	int nestedFrames
)
Visual Basic
Sub DrawFrame ( _
	frameNode As TNode, _
	x As Integer, _
	y As Integer, _
	width As Integer, _
	height As Integer, _
	nestedFrames As Integer _
)
Visual C++
void DrawFrame(
	TNode frameNode, 
	int x, 
	int y, 
	int width, 
	int height, 
	int nestedFrames
)
J#
void DrawFrame(
	TNode frameNode,
	int x,
	int y,
	int width,
	int height,
	int nestedFrames
)
JScript
function DrawFrame(
	frameNode : TNode, 
	x : int, 
	y : int, 
	width : int, 
	height : int, 
	nestedFrames : int
)
JavaScript
function DrawFrame(frameNode, x, y, width, height, nestedFrames);

Parameters

frameNode
Type: TNode
The node that required the frame.
x
Type: System..::..Int32
The horizontal offset of the frame.
y
Type: System..::..Int32
The vertical offset of the frame.
width
Type: System..::..Int32
The width of the frame.
height
Type: System..::..Int32
The height of the frame.
nestedFrames
Type: System..::..Int32
The number of nested frames.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionframeNode is nullNothingnullptra null reference (Nothing in Visual Basic).

See Also