2010/10/04
Scrollbar 유무 확인하기
Scrollbar 의 유무를 확인하는 것은 윈도우의 스타일을 확인하면 할 수 있다.
DWORD dwStyle = GetWindowLong( hWnd, GWL_STYLE )
<
if ( dwStyle & WS_HSCROLL )
{
//Horizontal scrollbar is visible
}
if ( dwStyle & WS_VSCROLL )
{
//Vertical scrollbar is visible
}
Original Post : http://neodreamer-dev.tistory.com/462
Labels:
C++
,
GetWindowLong
,
GWL_STYLE
,
scrollbar
,
TistoryOldPost
,
View
,
WS_HSCROLL
,
스크롤바
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment