LAnnAutomation::GetGaugeLength

#include "ltwrappr.h"

virtual L_DOUBLE LAnnAutomation::GetGaugeLength()

Gets the length of the gauge (the perpendicular lines at the ends of the Ruler object).

Returns

The object's gauge length.

Comments

The gauge length property applies only to Automation, PolyRuler, 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.

Platforms

Win32, x64.

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

 

Key Annotation Features

 

Calibrating Annotation Ruler Objects

Example

L_INT LAnnAutomation_GetGaugeLengthModifyAnnGaugeExample(LAnnAutomation  * pAnnAutomation, LAnnContainer AnnContainer) 
{ 
   L_INT nRet; 
   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) 
   { 
      nRet = pAnnAutomation->SetGaugeLength( 5.0f, 0); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C++ Class Library Help