HOWTO: Set Initial Default Size Of ActiveX (ATL) ControlLast reviewed: November 17, 1997Article ID: Q176552 |
The information in this article applies to:
SUMMARYThis article shows how to set the default size of an Active Template Library (ATL) control when it is first inserted into a container. The default width and height of an ATL control is stored in a variable called m_sizeExtent, which is normally initialized to 5080x5080 himetric units in the constructor for CComControlBase from which CComControl is derived. You can set your own preferred default size in your control's constructor, as follows:
CTestControl() { // width = 100 pixels, height = 25 pixels SIZE sz = { 100, 25 }; // convert pixels to himetric AtlPixelToHiMetric (&sz, &m_sizeExtent); // store natural extent m_sizeNatural = m_sizeExtent; }(c) Microsoft Corporation 1997, All Rights Reserved. Contributions by Samsom Tanrena, Microsoft Corporation Keywords : AtlControl AtlIss Version : WINDOWS:2.0,2.1 Platform : WINDOWS Issue type : kbhowto |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |