Error processing SSI file
LEADTOOLS Annotations (Leadtools.Annotations assembly)

Show in webframe

AnnRubberStampObject Class






Members 
Defines an annotation stamp object.
Object Model
Syntax
Remarks
The rubber stamp annotation object is an image that has a predefined metafile.

For information regarding default text strings used throughout the user interface in the automated mode, including information on how to override them, refer to Localization of LEADTOOLS for .NET Annotations Automation

For more information about the rubber stamp annotation object refer to AnnRubberStampObject. For more information about the automated rubber stamp annotation object, refer to Annotation Objects - Automated Features and Automated Annotations - Stamp Picture Tab.

Example

This example creates a new rubber stamp, and then addes it to the container.

Copy Code  
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.Codecs
Imports Leadtools.WinForms

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
using Leadtools;
using Leadtools.Annotations;
using Leadtools.Codecs;
using Leadtools.WinForms;

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);
}
Requirements

Target Platforms

See Also

Reference

AnnRubberStampObject Members
Leadtools.Annotations Namespace

Error processing SSI file
(Deprecated, use Leadtools.Annotations.Core instead)