LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)

AnnRubberStampObject Class

Show in webframe
Example 





Members 
Defines an annotation stamp object.
Object Model
Syntax
public class AnnRubberStampObject : AnnRectangleObject, IAnnHeaderIAnnObjectIAnnRectangle  
'Declaration
 
Public Class AnnRubberStampObject 
   Inherits AnnRectangleObject
   Implements IAnnHeaderIAnnObjectIAnnRectangle 
'Usage
 
Dim instance As AnnRubberStampObject

            

            
public ref class AnnRubberStampObject : public AnnRectangleObject, IAnnHeaderIAnnObjectIAnnRectangle  
Remarks
The rubber stamp annotation object is an image that has a predefined image.

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 WPF Annotations Automation

///

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

Example

For XAML example, refer to AnnGroupObject.

Copy Code  
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations

Private Sub AnnRubberStampObject_AnnRubberStampObject(ByVal container As AnnContainer)
   Dim rubberStamp As AnnRubberStampObject = New AnnRubberStampObject()
   rubberStamp.Rect = New Rect(100, 200, 400, 600)
   rubberStamp.Type = AnnRubberStampType.Approved
   container.Children.Add(rubberStamp)
End Sub
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Demos;
using Leadtools.Help;

private void AnnRubberStampObject_AnnRubberStampObject(AnnContainer container)
{
   AnnRubberStampObject rubberStamp = new AnnRubberStampObject();
   rubberStamp.Rect= new Rect(100, 200, 400, 600);
   rubberStamp.Type = AnnRubberStampType.Approved;
   container.Children.Add(rubberStamp);
}
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Examples;

private void AnnRubberStampObject_AnnRubberStampObject(AnnContainer container)
{
   AnnRubberStampObject rubberStamp = new AnnRubberStampObject();
   rubberStamp.Rect= new Rect(100, 200, 400, 600);
   rubberStamp.Type = AnnRubberStampType.Approved;
   container.Children.Add(rubberStamp);
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations

Private Sub AnnRubberStampObject_AnnRubberStampObject(ByVal container As AnnContainer)
   Dim rubberStamp As AnnRubberStampObject = New AnnRubberStampObject()
   rubberStamp.Rect= New Rect(100, 200, 400, 600)
   rubberStamp.Type = AnnRubberStampType.Approved
   container.Children.Add(rubberStamp)
End Sub
Requirements

Target Platforms

See Also

Reference

AnnRubberStampObject Members
Leadtools.Windows.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.