You can try to work with these events: SetupEditor and ChangeEdit.
For example, the code below will set the editor to the height of the row. This would be handy if you were about to edit multiline text with wordwrap. This doesn't adjust the height as keys are typed, however. This also is dependent on whether the editor's height can be set. You might have to set the editor's height a little bigger than the rows height.
Private Sub C1FlexGrid1_SetupEditor(ByVal sender As System.Object, ByVal e As C1.Win.C1FlexGrid.RowColEventArgs) Handles C1FlexGrid1.SetupEditor
If C1FlexGrid1.Rows(e.Row).Height > -1 And e.Col = 1 Then
C1FlexGrid1.Cols(e.Col).Editor.Height = C1FlexGrid1.Rows(e.Row).Height
End If
End Sub
The ChageEdit event is called after each key is pressed while in the editor, which could be useful but I don't have any sample to expand the editor while editing.
Regards,
Greg L