delphi
判断是否出现滚动条
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!‘);
delphi 判断是否出现滚动条,布布扣,bubuko.com
delphi 判断是否出现滚动条
原文:http://www.cnblogs.com/xe2011/p/3876217.html