#include "ltwrappr.h"
virtual L_INT LVectorBase::IsFontMapperEnabled (pbEnable)
L_BOOL * pbEnable; |
pointer to a variable |
Gets a value that indicates whether a Font Mapper is enabled.
Parameter | Description | |
pbEnable | Pointer to a variable to be updated with a value that indicates whether a Font Mapper is enabled. Possible values are: | |
Value | Meaning | |
TRUE | Font Mapper is enabled | |
FALSE | Font Mapper is not enabled. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
This function gets a value that indicates whether a Font Mapper is enabled or not in the vector handle.
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. |
Functions: |
LVectorBase::EnableFontMapper, LVectorBase::VectorFontMapperCallBack |
Topics |
|
|
|
class LMyVectorBase2IME: public LVectorBase
{
public:
LMyVectorBase2IME();
virtual ~LMyVectorBase2IME() ;
virtual L_INT VectorFontMapperCallBack (pVECTORHANDLE pVector, LPLOGFONT pLogFont);
};
LMyVectorBase2IME::LMyVectorBase2IME()
{
}
LMyVectorBase2IME::~LMyVectorBase2IME()
{
}
L_INT LMyVectorBase2IME:: VectorFontMapperCallBack (pVECTORHANDLE pVector, LPLOGFONT pLogFont)
{
UNREFERENCED_PARAMETER(pVector);
lstrcpy(pLogFont->lfFaceName, TEXT("Time New Roman"));
return SUCCESS ;
}
L_INT LVectorBase__IsFontMapperEnabledExample(HWND hWnd)
{
UNREFERENCED_PARAMETER(hWnd);
L_INT nRet;
LMyVectorBase2IME Vector;
L_BOOL bEnable;
nRet = Vector.IsFontMapperEnabled(&bEnable);
if(nRet != SUCCESS)
return nRet;
if ( !bEnable )
{
nRet = Vector.EnableFontMapper(TRUE);
if(nRet != SUCCESS)
return nRet;
}
else
{
MessageBox(hWnd, TEXT("The Font Mapper is or ready Enabled "), TEXT(""), MB_OK);
}
return SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET