[This is preliminary documentation and is subject to change.]

Recursively prints the control tree

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
protected static void PrintControlRecursive(
	Control startControl,
	StringBuilder sb
)
Visual Basic (Declaration)
Protected Shared Sub PrintControlRecursive ( _
	startControl As Control, _
	sb As StringBuilder _
)
Visual C++
protected:
static void PrintControlRecursive(
	Control^ startControl, 
	StringBuilder^ sb
)

Parameters

startControl
Type: System.Web.UI..::.Control
The postion from where the control tree should start printing
sb
Type: System.Text..::.StringBuilder
The output stringbuilder for the control tree

See Also