The AnnStampObject Class supports WPF/Silverlight.
The AnnStampObject Class is available in LEADTOOLS Document and Medical Imaging toolkits.
Defines an annotation stamp object.Visual Basic (Declaration) | |
---|---|
Public Class AnnStampObject Inherits AnnTextObject Implements IAnnFont, IAnnHeader, IAnnObject, IAnnPicture, IAnnRectangle, IAnnText |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As AnnStampObject |
C# | |
---|---|
public class AnnStampObject : AnnTextObject, IAnnFont, IAnnHeader, IAnnObject, IAnnPicture, IAnnRectangle, IAnnText |
C++/CLI | |
---|---|
public ref class AnnStampObject : public AnnTextObject, IAnnFont, IAnnHeader, IAnnObject, IAnnPicture, IAnnRectangle, IAnnText |
For XAML example, refer to AnnGroupObject.
This example creates a new stamp object.
Visual Basic | Copy Code |
---|---|
Private Sub AnnStampObject_AnnStampObject(ByVal container As AnnContainer, ByVal imageFileName As String) Dim stamp As AnnStampObject = New AnnStampObject() Dim pic As AnnPicture = New AnnPicture(New BitmapImage(New Uri(imageFileName))) pic.TransparentMode = AnnTransparentMode.None pic.TransparentColor = Colors.Black stamp.Picture = pic stamp.Rect = New Rect(100, 200, 400, 600) container.Children.Add(stamp) End Sub |
C# | Copy Code |
---|---|
private void AnnStampObject_AnnStampObject(AnnContainer container, string imageFileName) { AnnStampObject stamp = new AnnStampObject(); AnnPicture pic = new AnnPicture(new BitmapImage(new Uri(imageFileName))); stamp.Rect = new Rect(100, 200, 400, 600); pic.TransparentMode = AnnTransparentMode.None; pic.TransparentColor = Colors.Black; stamp.Picture = pic; container.Children.Add(stamp); } |
SilverlightCSharp | Copy Code |
---|---|
SilverlightVB | Copy Code |
---|---|
This class implements the IAnnPicture interface and accesses the IAnnPicture.Picture property that handles the picture associated with the annotation object.
For more information, refer to Using Pictures in WPF Annotation Objects
For more information about the stamp annotation object refer to AnnStampObject for WPF. For more information about the automated stamp annotation object, refer to WPF Annotation Objects - Automated Features and WPF Automated Annotations - Stamp Picture Tab.
System.Object
System.Windows.Threading.DispatcherObject
System.Windows.DependencyObject
Leadtools.Windows.Annotations.AnnObject
Leadtools.Windows.Annotations.AnnRectangleObject
Leadtools.Windows.Annotations.AnnTextObject
Leadtools.Windows.Annotations.AnnStampObject
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)