Topic: showhints

Hello MVD

How to avoid showhints in tablegrid.

Thansk

Post's attachments

Attachment icon capture.jpg 144.62 kb, 125 downloads since 2019-07-10 

Re: showhints

Hello Manix,
Make sure that the 'show hint' checkbox object is unchecked and that the 'hint' property is empty (see attached screenshot).
Regards,
Derek.

Post's attachments

Attachment icon tablegrid hint.jpg 275.71 kb, 125 downloads since 2019-07-10 

Re: showhints

Hello.


Example for the first column

procedure Form1_TableGrid1_OnChange (Sender: TObject);
begin
    Form1.TableGrid1.Columns[0].Options := Form1.TableGrid1.Columns[0].Options - coShowTextFitHint;
end;
Dmitry.

Re: showhints

YES! Thanks DriveSoft!

Re: showhints

Для Columns.Options есть описание в документации

Dmitry.