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

Platforms

Win32, x64.

See Also

Functions

Topics

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 20.0.2020.4.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help