LVectorBase::IsFontMapperEnabled

#include "ltwrappr.h"

virtual L_INT LVectorBase::IsFontMapperEnabled (pbEnable)

Gets a value that indicates whether a Font Mapper is enabled.

Parameters

L_BOOL * 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.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

This function gets a value that indicates whether a Font Mapper is enabled or not in the vector handle.

Required DLLs and Libraries

See Also

Functions

Topics

Example

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; 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help