Leadtools.Annotations Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
DrawObject Method
See Also 
Leadtools.Annotations Namespace > AnnObject Class : DrawObject Method




graphics
The Graphics surface on which to draw this AnnObject.
Draws this AnnObject on the specified surface.

Syntax

Visual Basic (Declaration) 
Protected Overridable Sub DrawObject( _
   ByVal graphics As Graphics _
) 
Visual Basic (Usage)Copy Code
Dim instance As AnnObject
Dim graphics As Graphics
 
instance.DrawObject(graphics)
C# 
protected virtual void DrawObject( 
   Graphics graphics
)
Managed Extensions for C++ 
protected: virtual void DrawObject( 
   Graphics graphics
) 
C++/CLI 
protected:
virtual void DrawObject( 
   Graphics graphics
) 

Parameters

graphics
The Graphics surface on which to draw this AnnObject.

Remarks

This method is called internally by the annotation framework whenever the Draw method is called. You do not need to call this method directly.

If an object is invisible (Visible is set to false), it will not draw itself.

By default, this method will draw the same graphics path returned from the GetGraphicsPath method when the AnnGetGraphicsPathMode is set to DrawObject. For simple objects such as lines and rectangles, this is sufficient. More complex objects that contain elements that either cannot be expressed by a graphics path (such as images) or elements that are too expensive to be expressed by a path (such as text) override this method to draw the object directly.

This method has the following logic:

  1. Calls the BeginDraw method that determines if the object is visible and sets up the object's PhysicalTransform matrix into the g graphics
  2. Calls GetGraphicsPath with AnnGetGraphicsPathMode set to DrawObject to get the graphics path that represents this object
  3. Uses the HasBrush method to check if this object implements a brush and if so, fills the interior of the graphics path with the Brush
  4. Uses the HasPen method to check if this object implements a pen and if so, draws the outside of the graphics path with the Pen
  5. Calls EndDraw to reset the g transformation

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features