←Select platform

AnnHiliteObject Class

Summary

Defines an annotation hilite object.

Remarks

The hilite annotation object is a simple rectangle that has a bounding rectangle, no stroke and no fill. Although it does not have a stroke or fill, it does have a color value that is used to fill this bounding area. By default the hilite object uses a yellow color.

For more information about the highlight annotation object refer to AnnHiliteObject for WPF. For more information about the automated highlight annotation object, refer to WPF Annotation Objects - Automated Features.

Example

This example creates a hilite object.

C#
VB
Silverlight C#
Silverlight VB
using Leadtools.Windows.Controls; 
using Leadtools.Windows.Annotations; 
using Leadtools.Demos; 
using Leadtools.Help; 
 
private void AnnHiliteObject_AnnHiliteObject(AnnContainer container) 
{ 
   AnnHiliteObject hilite = new AnnHiliteObject(); 
   hilite.Rect = new Rect(100, 200, 400, 600); 
   hilite.Fill = Colors.Yellow; 
 
   container.Children.Add(hilite); 
} 
Imports Leadtools.Windows.Controls 
Imports Leadtools.Windows.Annotations 
 
Private Sub AnnHiliteObject_AnnHiliteObject(ByVal container As AnnContainer) 
   Dim hilite As AnnHiliteObject = New AnnHiliteObject() 
   hilite.Rect = New Rect(100, 200, 400, 600) 
 
   hilite.Fill = Colors.Yellow 
   container.Children.Add(hilite) 
End Sub 
using Leadtools.Windows.Controls; 
using Leadtools.Windows.Annotations; 
using Leadtools.Examples; 
//using Leadtools.Help; 
 
private void AnnHiliteObject_AnnHiliteObject(AnnContainer container) 
{ 
   AnnHiliteObject hilite = new AnnHiliteObject(); 
   hilite.Rect = new Rect(100, 200, 400, 600); 
   hilite.Fill = Colors.Yellow; 
 
   container.Children.Add(hilite); 
} 
Imports Leadtools.Windows.Controls 
Imports Leadtools.Windows.Annotations 
 
Private Sub AnnHiliteObject_AnnHiliteObject(ByVal container As AnnContainer) 
   Dim hilite As AnnHiliteObject = New AnnHiliteObject() 
   hilite.Rect = New Rect(100, 200, 400, 600) 
   hilite.Fill = Colors.Yellow 
 
   container.Children.Add(hilite) 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Windows.Annotations Assembly