TableRowScaled Method (TableCell) |
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(
params TableCell[] cells
)
Public Shared Function Scaled (
ParamArray cells As TableCell()
) As TableRow
static member Scaled :
cells : TableCell[] -> TableRow
Parameters
- cells
- Type: Eto.FormsTableCell
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