←Select platform

AnnRectangleObject Class

Summary

Defines an annotation rectangle object.

Syntax

C#
VB
C++
[SerializableAttribute()] 
public class AnnRectangleObject : AnnObject 
  
<SerializableAttribute()> 
Public Class AnnRectangleObject  
   Inherits Leadtools.Annotations.AnnObject 
   Implements System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable  
[SerializableAttribute()] 
public ref class AnnRectangleObject : public Leadtools.Annotations.AnnObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable   

Remarks

The rectangle annotation object is a simple rectangle that has a bounding rectangle, a pen and a brush. For more information about the rectangle annotation object refer to AnnRectangleObject (Deprecated). For more information about the automated rectangle annotation object, refer to Annotation Objects - Automated Features (Deprecated).

Example

This example creates a new rectangle object with top, left at 100, 200, width, height of 400, 600 pixels, a red pen and a white brush and then adds it to a container.

C#
VB
using Leadtools; 
using Leadtools.Annotations; 
using Leadtools.Codecs; 
using Leadtools.WinForms; 
 
private void AnnRectangleObject_AnnRectangleObject(AnnContainer container) 
{ 
   AnnRectangleObject rect = new AnnRectangleObject(); 
   rect.Pen = new AnnPen(Color.Red, new AnnLength(1, AnnUnit.Pixel)); 
   rect.Brush = new AnnSolidBrush(Color.White); 
   rect.Bounds = new AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel); 
   container.Objects.Add(rect); 
} 
Imports Leadtools 
Imports Leadtools.Annotations 
Imports Leadtools.Codecs 
Imports Leadtools.WinForms 
 
Private Sub AnnRectangleObject_AnnRectangleObject(ByVal container As AnnContainer) 
   Dim rect As AnnRectangleObject = New AnnRectangleObject() 
   rect.Pen = New AnnPen(Color.Red, New AnnLength(1, AnnUnit.Pixel)) 
   rect.Brush = New AnnSolidBrush(Color.White) 
   rect.Bounds = New AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel) 
   container.Objects.Add(rect) 
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.Annotations Assembly