|
-
May 20th, 1999, 02:18 PM
#1
Toolbar height
ppl how can i get the height of toolbar??
what is the right way?
thanks
-
May 20th, 1999, 07:50 PM
#2
Re: Toolbar height
If you had created your project using AppWizard, you may have a pointer to the toolbar,
generally in CMainFrame class. With that m_wndToolBar, call GetWindowRect function as follows.
CRect rect;
m_wndToolBar.GetWindowRect(&rect);
int height = rect.Height();
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|