GridRow Constructor (Length, ContentElement)

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Creates a new instance of the GridRow using given row height and a collection of elements for its columns.

Namespace:  Apitron.PDF.Kit.FlowLayout.Content
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public GridRow(
	Length height,
	params ContentElement[] columnsContent
)

Parameters

height
Type: Apitron.PDF.Kit.StylesLength
The height.
columnsContent
Type: Apitron.PDF.Kit.FlowLayoutContentElement
Content of the columns.
Remarks

Examples

C#
GridRow row = new GridRow(Length.FromCentimeters(2), new TextBlock("text"));
See Also

Reference