TMSFNCGrid Issue with Web Core

I have each of the columns set to gtaCenter for VertAlignment, yet it seems that it is being ignored on every fourth row. All the other rows are aligned center as they should but every fourth row gets aligned to the Top of the cell (gtaLeading).


Is this a known bug, or am I missing something?

Hi,


We have investigated this here but couldn't reproduce this issue. Can you verify if the issue is solved by using the following code:

  TMSFNCGrid1.UseColumns := False;
  for I := 0 to TMSFNCGrid1.ColumnCount - 1 do
  begin
    for J := 0 to TMSFNCGrid1.RowCount - 1 do
    begin
      TMSFNCGrid1.VertAlignments[I, J] := gtaCenter;
    end;
  end;