Determines whether the vector window painting is enabled.
#include "ltwrappr.h"
L_BOOL LVectorWindow::IsAutoPaintEnabled(L_VOID)
Value | Meaning |
---|---|
TRUE | Vector window painting is enabled. |
FALSE | Vector window painting is disabled. |
Toggles (enable/disable) the AutoPaint feature
Assumes pVectorWindow points to a valid LVectorWindow object
L_INT LVectorWindow__IsAutoPaintEnabledExample(HWND hWndParent, LVectorWindow *pVectorWindow)
{
pVectorWindow->EnableAutoPaint( !pVectorWindow->IsAutoPaintEnabled());
if (pVectorWindow->IsAutoPaintEnabled())
SetWindowText(hWndParent, TEXT("AutoPaint Enabled"));
else
SetWindowText(hWndParent, TEXT("AutoPaint Disabled"));
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