TableRow Conversion (TableRow to TableCell) |
Implicitly converts a TableRow to a cell
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static implicit operator TableCell (
TableRow row
)
Public Shared Widening Operator CType (
row As TableRow
) As TableCell
F# does not support the declaration of new casting operators.
Parameters
- row
- Type: Eto.FormsTableRow
Row to convert.
Return Value
Type:
TableCell[Missing <returns> documentation for "M:Eto.Forms.TableRow.op_Implicit(Eto.Forms.TableRow)~Eto.Forms.TableCell"]
Remarks
Used to make defining a table's contents easier by allowing you to pass a table row as a cell
without having to create a table layout and cell manually.
See Also