L_AnnTextEdit

#include "l_bitmap.h"

L_INT EXT_FUNCTION L_AnnTextEdit (hObject);

HANNOBJECT hObject;

/* handle to the text-based annotation object */

This function causes a text-based annotation to enter edit mode. This function is available in the Document/Medical Toolkits.

Parameter

Description

hObject

Handle to the text-based annotation object.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function causes a text-based annotation to enter edit mode, which displays an edit window for direct entry of text. Calling this function allows a user to programmatically force an object into edit mode—an action that is normally available in automation mode when creating or double-clicking text-based annotations.

It can be used with any of the text-based annotations including:

ANNOBJECT_TEXT

ANNOBJECT_TEXTPOINTER

ANNOBJECT_NOTE

ANNOBJECT_PUSHPIN

ANNOBJECT_RTF

A successful call to L_AnnSetText() affects hObject in the following way:

image\sqrblit.gif If hObject is not selected, hObject becomes selected, and all other objects become unselected.

image\sqrblit.gif If hObject is already selected, then the selection state of all objects is unchanged.

image\sqrblit.gif If hObject is one of several objects selected, then the selection state of all objects is unchanged.

Only one object can be in text edit mode. Therefore, if another text object is in text edit mode (hObject2), calling L_AnnTextEdit(), will get hObject2 out of the text edit mode, and put hObject into the text edit mode.

This function will fail with ERROR_AUTOMATION_INV_HANDLE if hObject is not contained in the root container and if it is not in the automated mode.

This function works only with the following objects:

ANNOBJECT_TEXT

ANNOBJECT_TEXTPOINTER

ANNOBJECT_NOTE

ANNOBJECT_PUSHPIN

ANNOBJECT_RTF

If you pass an object that is not one of these types, the function will return ERROR_INV_PARAMETER.

Required DLLs and Libraries

LTANN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Windows 95 / 98 / Me, Windows 2000 / XP.

See Also

Functions:

L_AnnGetText, L_AnnGetTextLen, L_AnnGetAutoText, L_AnnGetAutoTextLen, L_AnnSetAutoText, L_AnnSetTextRTF, L_AnnGetTextRTF, L_AnnGetTextAlign, L_AnnSetTextAlign

Topics:

Annotation Objects - Automated Features

 

Annotation Functions (Document/Medical only): Getting and Setting Text Properties

Example

// This example programmatically makes an annotation text object
// hObject go into edit mode
// Note that hObject must be a 
text-based annotation
L_VOID ExampleAnnTextEdit(HANNOBJECT hObject) 
{
   L_INT nRet = SUCCESS; 
   L_UINT uType = 0; 
   L_CHAR *pszError = N
ULL; 
   
   nRet = 
L_AnnTextEdit(hObject); 
   switch(nRet) 
   {
   case SUCCESS: 
      pszError = NULL; 
      break; 
   case ERROR_AUTOMATION_INV_HANDLE: 
      pszError = "
L_AnnTextEdit failed because you are not in automated mode";
      break; 
   
case ERROR_INV_PARAMETER: 
      pszError = "
L_AnnTextEdit failed because hObject was not text-based";
      break; 
   default: 
      pszError = "
L_AnnTextEdit failed";
      break; 
   }
   
   if (pszError) 
      MessageBox(NULL, pszError,  "Error", 
MB_OK); 
}