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 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also