LVectorDialog::DoModalVectorViewMode
#include "ltwrappr.h"
virtual L_INT LVectorDialog::DoModalVectorViewMode(hWndParent=NULL, pnViewMode=NULL);
HWND hWndParent; |
/* window handle */ |
L_INT *pnViewMode; |
/* view mode */ |
Brings up the Vector View Mode dialog.
Parameter |
Description |
hWndParent |
Handle of the window that owns the dialog. |
pnViewMode |
Pointer to an L_INT variable that contains a view mode value. The value present in the L_INT variable when the function is called is used to initialize the dialog. If this parameter is NULL when the function is called, the value used to initialize the dialog will come from the vector handle. When this function returns, if this parameter is not NULL, the variable pointed to by pnViewMode is updated with the value entered through the dialog. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
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: |
|
Topics: |
Example
L_INT LVectorDialog__DoModalVectorViewModeExample(HWND hWnd, LVectorBase *pVector) { L_INT nRet; LVectorDialog VectorDlg; L_INT nViewMode = VECTOR_VIEWMODE_SNAP; VectorDlg.SetVector(pVector); VectorDlg.EnablePreview(); VectorDlg.EnableAutoProcess(); L_TCHAR szMsg[200], *pszViewMode = NULL; nRet = VectorDlg.DoModalVectorViewMode(hWnd, &nViewMode); if(nRet != SUCCESS) return nRet; switch(nViewMode) { case VECTOR_VIEWMODE_FIT: pszViewMode = TEXT("VECTOR_VIEWMODE_FIT"); break; case VECTOR_VIEWMODE_SNAP: pszViewMode = TEXT("VECTOR_VIEWMODE_SNAP"); break; } wsprintf(szMsg, TEXT("ViewMode[%s]"), pszViewMode); MessageBox(hWnd, szMsg, TEXT(""), MB_OK); return SUCCESS; }