TableRowScaled Method (IEnumerableTableCell) |
Creates a scaled table row with the specified cells
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static TableRow Scaled(
IEnumerable<TableCell> cells
)
Public Shared Function Scaled (
cells As IEnumerable(Of TableCell)
) As TableRow
static member Scaled :
cells : IEnumerable<TableCell> -> TableRow
Parameters
- cells
- Type: System.Collections.GenericIEnumerableTableCell
Cells for the table row
Return Value
Type:
TableRowA new scaled TableRow with the specified cells
Remarks
This is the same as creating a new TableRow and setting ScaleHeight = true.
See Also