GridLayoutRowFactory

Properties

GridLayout - GridLayout

Defines the width of the container.

Methods

Add()

Adds an item to the collection

RETURNS

Returns a new GridLayoutRowBuilder with the available configuration options.

Example

Razor
 
            .Rows(c=>{
                c.Add().Height("100px");
                c.Add().Height("100px");
                c.Add().Height("300px");
            })