Gets a Leadtools.LeadRectD object that specifies the current physical rectangle of this AnnObject.
public virtual LeadRectD GetInvalidateRect(
AnnContainerMapper mapper,
IAnnObjectRenderer renderer
)
Public Overridable Function GetInvalidateRect( _
ByVal mapper As AnnContainerMapper, _
ByVal renderer As IAnnObjectRenderer _
) As LeadRectD
public:
virtual LeadRectD^ GetInvalidateRect(
AnnContainerMapper^ mapper,
IAnnObjectRenderer^ renderer
)
mapper
The mapper to use in this container when converting display, container and image coordinates.
renderer
The object renderer to use.
The current physical rectangle of this AnnObject.
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);
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document