Create a grid layout, based on another layout manager.

Namespace: TallComponents.Interaction.LayoutManagers
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.43.1

Syntax

C#
public GridLayoutManager(
	LayoutManager baseLayoutManager,
	int columnCount
)
Visual Basic
Public Sub New ( _
	baseLayoutManager As LayoutManager, _
	columnCount As Integer _
)

Parameters

baseLayoutManager
Type: TallComponents.Interaction.LayoutManagers..::..LayoutManager
The base layout manager.
columnCount
Type: System..::..Int32
The number of columns.

Remarks

The base layout manager will be invoked first, and then the resulting interactors will be moved to their grid position, assuming they have been left at the origin by the base layout manager.

See Also