DOC: Incorrect Documentation for CToolBar::SetSizes()Last reviewed: July 10, 1997Article ID: Q141444 |
4.00
WINDOWS NT
kbprg kbdocerr kbdocfix
The information in this article applies to:
SUMMARYThe documentation provided with Visual C++ 4.0 incorrectly describes the parameter values for the SetSizes() member of the CToolBar class. The documentation indicates that the button size must be large enough to provide space for a three pixel border around the image. Stated another way, the width and height of the button must be at least six pixels larger than the width and height of the image displayed on that button. The documentation should indicate that the button width must be at least seven pixels larger than the image width. If a margin of six pixels is used, the right-most button will be clipped. The button height need only exceed the image height by six pixels as noted in the documentation. The documentation was corrected in Visual C++ 4.1.
MORE INFORMATIONThe SetSizes() member of the CToolBar class is used to alter the size of toolbar buttons and their corresponding images. The prototype for this function is:
void SetSizes( SIZE sizeButton, SIZE sizeImage );According to the documentation provided with Visual C++ 4.0, the dimensions of sizeButton must be large enough to accommodate the image plus a three- pixel-wide button outline on each side of the image. The documentation was correct for earlier versions of MFC. However with MFC 4.0, the dimensions for sizeButton must provide for at least seven extra pixels in the width of each button. This requirement is due to the use of the toolbar common control and is imposed by the common control rather than MFC.
|
KBCategory: kbprg kbdocerr kbdocfix
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |