You can use usual Column class to display multiple lines text, but should set WordWrap option:
[c#]
private void SpecifyWordWrapForColumn(Column col)
{
col.FormatFlags &= ~StringFormatFlags.NoWrap;
}
In this case height of cells you can specify via FlyGrid.Rows.DefaultRowHeight.