LVectorWindow::FitToParent

#include "ltwrappr.h"

L_INT LVectorWindow::FitToParent(bFlag=TRUE)

Changes the class object's window so that its size fits its parent window's client area.

Parameters

L_BOOL bFlag

Flag that indicates whether the vector window will update the display. Possible values are:

Value Meaning
TRUE The window will update the display.
FALSE The window will not update the display.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

If using the LVectorWindow object as a control, FitToParent can be called in an OnSize event to automatically resize the object whenever the user resizes the parent window.

Required DLLs and Libraries

See Also

Functions

Example

Assumes pVectorWindow points to a valid LVectorWindow object.

L_INT LVectorWindow__FitToParentExample(LVectorWindow *pVectorWindow) 
{ 
   L_INT nRet = pVectorWindow->FitToParent(); 
 
   if (SUCCESS != nRet) 
   { 
      if (nRet == WRPERR_WINDOW_NOT_CREATED) 
         MessageBox(NULL, TEXT("Window has not been created."), TEXT(""), MB_OK); 
      else if (nRet == WRPERR_OPERATION_NOT_ALLOWED) 
         MessageBox(NULL, TEXT("Window has no parent."), TEXT(""), MB_OK); 
   } 
 
   return nRet; 
} 

Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help