Not a huge issue. But noticed hints on fixed cells, carry over the font settings?
onGridHint doesn’t have any properties to change that.
Not a huge issue. But noticed hints on fixed cells, carry over the font settings?
onGridHint doesn’t have any properties to change that.
Please provide details. I cannot reproduce this.
Test code:
procedure TForm1.AdvStringGrid1GridHint(Sender: TObject; ARow, ACol: Integer;
var hintstr: string);
begin
hintstr := advstringgrid1.Cells[acol,arow];
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
advstringgrid1.ShowHint := true;
advstringgrid1.Cells[0,0] :='Hello world';
advstringgrid1.Cells[1,1] :='Hello world';
end;
Hint for normal cell and fixed cell look identical.