Sets the size, in points, of the font used to display the automation dialog boxes.
#include "l_bitmap.h"
L_LTANN_API L_INT L_AnnSetAutoDialogFontSize(hObject, nFontSize)
Handle to an automation object.
The font size to set.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
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.
Win32, x64.
L_INT AnnSetAutoDialogFontSizeExample(HANNOBJECT hAutoObject)
{
L_INT nRet;
L_INT nfontsize;
/* Get and Set the font size for the dialogs */
nRet = L_AnnGetAutoDialogFontSize(hAutoObject, &nfontsize);
if (nRet != SUCCESS)
return nRet;
nfontsize *= 2;
return L_AnnSetAutoDialogFontSize(hAutoObject, nfontsize);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document