LEADTOOLS Annotations (Leadtools.Annotations assembly)
LEAD Technologies, Inc

AnnFreehandHotspotObject Class

Example 





Members 
Defines an annotation freehand hot spot object.
Object Model
AnnFreehandHotspotObject ClassAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPicture ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class
Syntax
'Declaration
 
<SerializableAttribute()>
Public Class AnnFreehandHotspotObject 
   Inherits AnnPolygonObject
   Implements IAnnPictureObjectSystem.ICloneableSystem.IDisposableSystem.Runtime.Serialization.ISerializable 
'Usage
 
Dim instance As AnnFreehandHotspotObject
function Leadtools.Annotations.AnnFreehandHotspotObject()
Remarks
The freehand hot spot annotation object is designed to work as a scaled picture drawn inside a collection of points that create a sequence of joined lines. The freehand hot spot object will draw the picture if the owner container is in design mode. If the container is in run mode, the freehand hot spot object will not draw the picture.

For information on using pictures in a freehand hot spot annotation object, refer to Using Pictures in Annotation Objects

For more information about the freehand hotspot annotation object refer to AnnFreehandHotspotObject. For more information about the automated freehand hotspot annotation object, refer to Annotation Objects - Automated Features and Automated Annotations - Hotspot Picture Tab.

Example
 
Private Sub AnnFreehandHotspotObject_AnnFreehandHotspotObject(ByVal container As AnnContainer)
   Dim freehandHotspot As AnnFreehandHotspotObject = New AnnFreehandHotspotObject()
   freehandHotspot.Points.Add(New AnnPoint(100, 100, AnnUnit.Pixel))
   freehandHotspot.Points.Add(New AnnPoint(200, 100, AnnUnit.Pixel))
   freehandHotspot.Points.Add(New AnnPoint(200, 200, AnnUnit.Pixel))
   freehandHotspot.Points.Add(New AnnPoint(100, 300, AnnUnit.Pixel))
   container.Objects.Add(freehandHotspot)
End Sub
private void AnnFreehandHotspotObject_AnnFreehandHotspotObject(AnnContainer container)
{
   AnnFreehandHotspotObject freehandHotspot = new AnnFreehandHotspotObject();
   freehandHotspot.Points.Add(new AnnPoint(100, 100, AnnUnit.Pixel));
   freehandHotspot.Points.Add(new AnnPoint(200, 100, AnnUnit.Pixel));
   freehandHotspot.Points.Add(new AnnPoint(200, 200, AnnUnit.Pixel));
   freehandHotspot.Points.Add(new AnnPoint(100, 300, AnnUnit.Pixel));
   container.Objects.Add(freehandHotspot);
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnnFreehandHotspotObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.