LVectorWindow::FitToParent

#include "ltwrappr.h"

L_INT LVectorWindow::FitToParent(bFlag=TRUE)

L_BOOL bFlag;

/* flag that indicates whether the window will update the display */

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

Parameter

Description

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

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

LVKRN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LVectorWindow::Move, Class Members

Example

//Assumes pVectorWindow points to a valid LVectorWindow object

void Example25(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);
   }
}