L_AnnSetAutoDialogFontSize
#include "l_bitmap.h"
L_INT EXT_FUNCTION L_AnnSetAutoDialogFontSize(hObject, nFontSize)
HANNOBJECT hObject; |
/* handle to an annotation automation object */ |
L_INT nFontSize; |
/* font size */ |
Sets the size, in points, of the font used to display the automation dialog boxes. This function is available in the Document/Medical Toolkits.
Parameter |
Description |
hObject |
Handle to an automation object. |
nFontSize |
The font size to set. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
This function applies only to automation objects.
The default value is 8. (The default value is 9 in the Japanese version.)
To get the font size for an annotation automation object, use the L_AnnGetAutoDialogFontSize.
This function may be used to convert the annotation automation dialogs to another language. For more information, refer to Converting Automation Dialogs to Other Languages.
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_AnnGetAutoDialogFontSize, L_AnnSetAutoHilightPen, L_AnnSetAutoSnapCursor, L_AnnGetAutoSnapCursor |
Topics: |
|
|
|
|
|
|
|
|
|
|
Example
void TestFunction()
{
HANNOBJECT hAutoObject;
L_INT nfontsize;
/* Get and Set the font size for the dialogs */
L_AnnGetAutoDialogFontSize(hAutoObject, &nfontsize);
nfontsize *= 2;
L_AnnSetAutoDialogFontSize(hAutoObject, nfontsize);
return;
}