Sorry, but there are no more tags available to filter with.
-
You can code it to move in the SetupEditor event. Private Sub C1FlexGrid1_SetupEditor( ByVal sender As System.Object, ByVal e As C1.Win.C1FlexGrid.RowColEventArgs) Handles C1FlexGrid1.SetupEditor C1FlexGrid1.Editor.Location = New Point(C1FlexGrid1.Editor.Left - 20, C1FlexGrid1.Editor.Top) End Sub hope...
-
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...
Page 1 of 1 (2 items)