#include "ltwrappr.h"
virtual L_INT LVectorDialog::DoModalVectorNewGroup(hWndParent, pVectorGroup)
Brings up the Vector New Group dialog. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.
Handle of the window that owns the dialog.
Pointer to an LVectorGroup object. If this parameter is not NULL, the object pointed to by pVectorGroup will be updated with the newly added group object. If this parameter is NULL, the dialog is initialized using default values. When the function returns, pVectorGroup will not be updated with the newly added group, since pVectorGroup is NULL.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Required DLLs and Libraries
This example will call the DoModalVectorNewGroup() dialog, and return the selected values. Will not allow creation of duplicate groups.
L_INT LVectorDialog__DoModalVectorNewGroupExample(HWND hWnd, LVectorBase *pVector)
{
L_INT nRet;
LVectorDialog VectorDlg;
VectorDlg.SetVector(pVector);
VectorDlg.EnableAutoProcess();
if (VectorDlg.IsNoDuplicateEnabled() == FALSE)
{
MessageBox(hWnd, TEXT("Setting the 'No Duplicate Flag'"), TEXT(""), MB_OK);
}
VectorDlg.EnableNoDuplicate();
LVectorGroup VectorGroup;
nRet = VectorDlg.DoModalVectorNewGroup(hWnd, &VectorGroup);
if (nRet == SUCCESS)
{
L_TCHAR szMsg[200];
VECTORGROUPDESC Desc;
VectorGroup.GetGroupDesc(&Desc);
wsprintf(szMsg, TEXT("New Group\nName[%s]"),Desc.szName);
MessageBox(hWnd, szMsg, TEXT(""), MB_OK);
}
else
return nRet;
return SUCCESS;
}
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