SortIndexes in TAdvStringGrid v9.1.4.0

Hi, I've recently upgraded from TAdvStringGrid v8.4.2.2 to v9.1.4.0 under C++ Buildred v12.2 Athens. Some existing code that references the SortIndexes of a grid now throws an exception.

The SortIndexes property is NULL in the new version.

Do I need to treat SortIndexes differently under the new version of TAdvStringGrid?

Thanks,

Andrew

I could not see an issue here. SortIndexes is created in the grid constructor.
Accessing it with:

procedure TForm1.FormCreate(Sender: TObject);
begin
  Caption := AdvStringGrid1.SortIndexes.Count.ToString;
end;

works fine here.