GridLayoutItemBuilder
Methods
Content(System.Action)
Defines the content of the grid item.
Parameters
content - System.Action
The content to be set.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
Content(System.Func)
Defines the content of the grid item.
Parameters
content - System.Func<Object,Object>
A function that takes an object and returns an object.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
Content(System.String)
Defines the content of the grid item.
Parameters
content - System.String
The HTML content to be rendered inside the grid item.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
Row(System.Nullable)
Defines the row number position of the item in the grid.
Parameters
value - System.Nullable<Int32>
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
Column(System.Nullable)
Defines the column number position of the item in the grid.
Parameters
value - System.Nullable<Int32>
The column number position.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
RowSpan(System.Nullable)
Defines the row span of the item.
Parameters
value - System.Nullable<Int32>
The row span value.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
ColumnSpan(System.Nullable)
Defines the column index of the grid.
Parameters
value - System.Nullable<Int32>
The column span value.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
HtmlAttributes(System.Object)
Sets the HTML attributes applied to the outer HTML element rendered for the item
Parameters
attributes - System.Object
The attributes.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.
HtmlAttributes(System.Collections.Generic.IDictionary)
Sets the HTML attributes applied to the outer HTML element rendered for the item
Parameters
attributes - System.Collections.Generic.IDictionary<String,Object>
The attributes.
RETURNS
A new instance of GridLayoutItemBuilder for further configuration.