Defines an annotation stamp object.
Object Model
Syntax
Example
This example creates a new rubber stamp, and then addes it to the container.
Visual Basic | Copy Code |
---|
Private Sub AnnRubberStampObject_AnnRubberStampObject(ByVal container As AnnContainer)
Dim rubberStamp As AnnRubberStampObject = New AnnRubberStampObject()
rubberStamp.Bounds = New AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel)
rubberStamp.Type = AnnRubberStampType.Approved
container.Objects.Add(rubberStamp)
End Sub |
C# | Copy Code |
---|
private void AnnRubberStampObject_AnnRubberStampObject(AnnContainer container) { AnnRubberStampObject rubberStamp = new AnnRubberStampObject(); rubberStamp.Bounds = new AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel); rubberStamp.Type = AnnRubberStampType.Approved; container.Objects.Add(rubberStamp); } |
Remarks
Inheritance Hierarchy
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