我需要在 C1FlexGrid 中自动调整行高。我需要使用 AutoSizeRow 让它工作,但它不会改变行高。我通过设置高度对其进行了测试,它可以工作。为什么 AutoSizeRow 不起作用?
For i As Integer = 0 To fgrid.Rows.Count - 1
'Setting the height explicitly changes the row height
fgrid.Rows(i).Height = 32
'But AutoSizeRow() does not change the row height
fgrid.AutoSizeRow(i)
Next i