Leadtools.Annotations Namespace : AnnRectangleObject Class |
[SerializableAttribute()] public class AnnRectangleObject : AnnObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Declaration <SerializableAttribute()> Public Class AnnRectangleObject Inherits AnnObject Implements System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Usage Dim instance As AnnRectangleObject
public sealed class AnnRectangleObject : System.ICloneable, IClosable //In WinRT the IDisposable interface is replaced by IClosable, ~Remove~
function Leadtools.Annotations.AnnRectangleObject()
[SerializableAttribute()] public ref class AnnRectangleObject : public AnnObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
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. For more information about the automated rectangle annotation object, refer to Annotation Objects - Automated Features.
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
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); }
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