GridLayoutColumnFactory

Properties

GridLayout - GridLayout

Defines the width of the container.

Methods

Add()

Adds an item to the collection

RETURNS

Returns a GridLayoutColumnBuilder with the available configuration options.

Example

Razor
 
            .Columns(c=>{
                c.Add().Width("270px");
                c.Add().Width("270px");
                c.Add().Width("300px");
            })