Отображаются ли полосы прокрутки для TStringGrid?

Материал из DRKB

Отображаются ли полосы прокрутки для TStringGrid?[править | править код]

if (GetWindowlong(Stringgrid1.Handle, GWL_STYLE) and WS_VSCROLL) <> 0 then
  ShowMessage('Vertical scrollbar is visible!');

if (GetWindowlong(Stringgrid1.Handle, GWL_STYLE) and WS_HSCROLL) <> 0 then
  ShowMessage('Horizontal scrollbar is visible!');


Source: Взято с сайта: http://www.swissdelphicenter.ch
ID: 01099