Category: Components
Title: Detect if the scrollbars of a TStringGrid are visible
Date added: 15.03.2006
Hits: 2719
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!');