Leadtools.Annotations Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
AnnButtonObject Class
See Also  Members   Example 
Leadtools.Annotations Namespace : AnnButtonObject Class




Defines an annotation push button object.

Object Model















Syntax

Visual Basic (Declaration) 
<SerializableAttribute()>
Public Class AnnButtonObject 
   Inherits AnnTextObject
   Implements IAnnTextObject 
Visual Basic (Usage)Copy Code
Dim instance As AnnButtonObject
C# 
[SerializableAttribute()]
public class AnnButtonObject : AnnTextObject, IAnnTextObject  
Managed Extensions for C++ 
[SerializableAttribute()]
public __gc class AnnButtonObject : public AnnTextObject, IAnnTextObject  
C++/CLI 
[SerializableAttribute()]
public ref class AnnButtonObject : public AnnTextObject, IAnnTextObject  

Example

This example creates a new button object located at (100, 200) and with dimensions 400 X 600 pixels.

Visual BasicCopy Code
Private Sub AnnButtonObject_AnnButtonObject(ByVal container As AnnContainer, ByVal textString As String)
   Dim button As AnnButtonObject = New AnnButtonObject()
   button.Text = textString
   button.Font = New AnnFont("Arial", New AnnLength(10, AnnUnit.Point), FontStyle.Regular)
   button.Bounds = New AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel)
   button.Pushed = False
   container.Objects.Add(button)
End Sub
C#Copy Code
private void AnnButtonObject_AnnButtonObject(AnnContainer container, string textString) 

   AnnButtonObject button = new AnnButtonObject(); 
   button.Text = textString; 
   button.Font = new AnnFont("Arial", new AnnLength(10, AnnUnit.Point), FontStyle.Regular); 
   button.Bounds = new AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel); 
   button.Pushed = false; 
   container.Objects.Add(button); 
}

Remarks

The push button annotation object is an image of a standard Windows button that can be activated.

The AnnButtonObject class inherits the the AnnTextObject class, which implements the IAnnTextObject interface. For more information, refer to Using Text in Annotation Objects.

For more information about the button annotation object refer to AnnButtonObject. For more information about the automated annotation button object, refer to Annotation Objects - Automated Features.

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnDrawable
      Leadtools.Annotations.AnnObject
         Leadtools.Annotations.AnnRectangleObject
            Leadtools.Annotations.AnnTextObject
               Leadtools.Annotations.AnnButtonObject

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

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features