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

Functions:

LAnnAutomation::SetBitmapDpiX, LAnnAutomation::SetBitmapDpiY, LAnnAutomation::GetBitmapDpiX, LAnnAutomation::GetBitmapDpiY, LAnnAutomation::SetUnit, LAnnAutomation::GetUnit, LAnnAutomation::GetDistance, LAnnAutomation::SetGaugeLength, Class Members, LAnnotation::CalibrateRuler

Topics:

Annotation Functions: Working with the Toolbar

 

Implementing Annotations

 

Automated User Interface for Annotations

 

Using Rulers in Annotation Objects

 

New Annotation Features of Version 14.5

 

Calibrating Annotation Ruler Objects

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);
   }
}