Gets a value that indicates whether a Font Mapper is enabled.
#include "ltwrappr.h"
virtual L_INT LVectorBase::IsFontMapperEnabled (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. |
Value | Meaning |
---|---|
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.
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;
}