Changes the class object's window so that its size fits its parent window's client area.
#include "ltwrappr.h"
L_INT LVectorWindow::FitToParent(bFlag=TRUE)
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. |
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
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.
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 Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document