LVectorDialog::DoModalVectorViewMode

#include "ltwrappr.h"

virtual L_INT LVectorDialog::DoModalVectorViewMode(hWndParent=NULL, pnViewMode=NULL);

HWND hWndParent;

/* window handle */

L_INT L_FAR *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
LVDLG
LTFIL

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:

Class Members

Topics:

Vector CommonDialogs

Example

L_VOID Example83(HWND hWnd, LVectorBase *pVector)
{
   LVectorDialog VectorDlg;
   L_INT nViewMode = VECTOR_VIEWMODE_SNAP;
   
   VectorDlg.SetVector(pVector);
   VectorDlg.EnablePreview();
   VectorDlg.EnableAutoProcess();
   
   L_BOOL bUseLights = TRUE;
   COLORREF ColorAmbient = RGB(100,200,50);
   L_INT nPolygonMode = VECTOR_POLYGON_POINT;
   L_TCHAR szMsg[200], *pszViewMode;
   
   VectorDlg.DoModalVectorViewMode(hWnd, &nViewMode);
   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);
}