LAnnAutomation::GetGaugeLength
#include "ltwrappr.h"
virtual L_DOUBLE LAnnAutomation::GetGaugeLength(L_VOID)
Gets the length of the gauge (the perpendicular lines at the ends of the Ruler object). This function is available in the Document/Medical Toolkits.
Returns
The object's gauge length.
Comments
The gauge length applies only to Automation and Ruler objects. Refer to Annotation Automation Object.
Length is expressed in pixels, not in points. The length is for the whole line, not just from the end point of the ruler to the end point of the gauge - it is from one end of the gauge to the other end of the gauge.
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. |
See Also
Example
L_VOID ModifyAnnGauge(LAnnAutomation L_FAR * pAnnAutomation,
LAnnContainer L_FAR * pAnnContainer)
{
L_DOUBLE dLength;
/* if gauge length setting for the Automation object
is larger than 5 pixels, then make it 5 pixels. */
dLength = pAnnAutomation->GetGaugeLength();
if(dLength > 5.0f)
{
pAnnAutomation->SetGaugeLength(
5.0f, 0);
}
}