←Select platform

GetInvalidateRect Method

Summary
Gets a Leadtools.LeadRectD object that specifies the current physical rectangle of this AnnObject.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public virtual LeadRectD GetInvalidateRect( 
   AnnContainerMapper mapper, 
   IAnnObjectRenderer renderer 
) 
- (LeadRectD)getInvalidateRectMapper:(LTAnnContainerMapper *)mapper renderer:(id<LTIAnnObjectRenderer>)renderer; 
public LeadRectD getInvalidateRect(AnnContainerMapper mapper, IAnnObjectRenderer renderer) 
public:  
   virtual LeadRectD^ GetInvalidateRect( 
      AnnContainerMapper^ mapper, 
      IAnnObjectRenderer^ renderer 
   ) 
def GetInvalidateRect(self,mapper,renderer): 

Parameters

mapper
The mapper to use in this container when converting display, container and image coordinates.

renderer
The object renderer to use.

Return Value

The current physical rectangle of this AnnObject.

Remarks

Use this method to obtain the current physical rectangle of the object. The mapper and renderer are required to calculate the correct pixel size of the rectangle.

The automation will typically perform invalidation on the automation control like this:

// Get current physical rectangle of the object 
LeadRectD oldRectangle = annObject.GetInvalidateRect(mapper, renderer); 
// Modify annObject, for example 
annObject.Translate(10, 10); 
// Get the new physical rectangle of the object 
LeadRectD newRectangle = annObject.GetInvalidateRect(mapper, renderer); 
// Get the union of old and new rectangles 
LeadRectD invalidateRect = LeadRectD.UnionRects(oldRectangle, newRectangle); 
// Invalidate the viewer control so the object is erased and then re-drawn at the new location 
automationControl.AutomationInvalidate(invalidateRect); 
Requirements

Target Platforms

See Also

Reference

AnnObject Class

AnnObject Members

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Engine Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.