LAnnTextPointer::GetTextPointerFixed

Summary

Gets a value that indicates whether the pointer of an LAnnTextPointer object is fixed.

Syntax

#include "ltwrappr.h"

virtual L_INT LAnnTextPointer::GetTextPointerFixed(pbPointerFixed)

Parameters

L_BOOL *pbPointerFixed

Pointer to a variable to be updated with a value that specifies whether the pointer of an LAnnTextPointer is fixed. Possible values are:

Value Meaning
TRUE The pointer of the LAnnTextPointer object is fixed.
FALSE The pointer of the LAnnTextPointer moves with the object.

Returns

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

Comments

If pbPointerFixed is updated with TRUE, the text pointer of the object is fixed. When the text pointer is fixed, the location that the text pointer points to does not change when moving the object (either programatically or through automation).

If pbPointerFixed is updated with FALSE, the text pointer of the object is not fixed. This means that when the object is moved, the location the text pointer points to moves along with the object.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

Sample for LAnnTextPointer::GetTextPointerFixed, LAnnTextPointer::SetTextPointerFixed
This example toggles the text pointer fixed state of an LAnnTextPointer object.

L_INT LAnnTextPointer_GetTextPointerFixedExample(LAnnTextPointer *pLTextPointer)  
{ 
	L_INT nRet;  
   L_BOOL bTextPointerFixed;  
   L_TCHAR szMsg[100];  
   L_UINT uType;  
    
   nRet = pLTextPointer->GetTextPointerFixed( &bTextPointerFixed);  
	if(nRet != SUCCESS) 
		return nRet; 
 
   bTextPointerFixed = !bTextPointerFixed;  
 
   nRet= pLTextPointer->SetTextPointerFixed(bTextPointerFixed, 0);  
   if (nRet != SUCCESS)  
   { 
      uType = pLTextPointer->GetType(); 
      wsprintf(szMsg, TEXT("SetTextPointerFixed Error: %d on object type[%d]\n"), nRet, uType);  
      MessageBox(NULL, szMsg, TEXT("Error"), MB_OK);  
		return nRet; 
   } 
	return SUCCESS; 
} 

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.