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




Defines a particular format for text, including font face, size, and style attributes using to draw annotation strings.

Object Model


Syntax

Visual Basic (Declaration) 
<SerializableAttribute()>
Public Class AnnFont 
Visual Basic (Usage)Copy Code
Dim instance As AnnFont
C# 
[SerializableAttribute()]
public class AnnFont 
Managed Extensions for C++ 
[SerializableAttribute()]
public __gc class AnnFont 
C++/CLI 
[SerializableAttribute()]
public ref class AnnFont 

Example

This example uses an AnnFont to draw text.

Visual BasicCopy Code
Public Sub AnnFont_AnnFont(ByVal graphics As Graphics, ByVal converter As AnnUnitConverter, ByVal str As String, ByVal x As Integer, ByVal y As Integer)
   Dim annBrush As AnnSolidBrush = New AnnSolidBrush(Color.Red)
   Dim annFont As AnnFont = New AnnFont(FontFamily.GenericMonospace, New AnnLength(15, AnnUnit.Point), FontStyle.Bold Or FontStyle.Italic)
   Dim gdiBrush As Brush = annBrush.Create(converter, AnnRectangle.Empty)
   Try
      Dim gdiFont As Font = annFont.Create(graphics, converter)
      Try
         graphics.DrawString(str, gdiFont, gdiBrush, x, y)
      Finally
         CType(gdiFont, IDisposable).Dispose()
      End Try
   Finally
      CType(gdiBrush, IDisposable).Dispose()
   End Try
End Sub
C#Copy Code
public void AnnFont_AnnFont(Graphics graphics, AnnUnitConverter converter, string str, int x, int y) 

   AnnSolidBrush annBrush = new AnnSolidBrush(Color.Red); 
   AnnFont annFont = new AnnFont(FontFamily.GenericMonospace, new AnnLength(15, AnnUnit.Point), FontStyle.Bold | FontStyle.Italic); 
   using(Brush gdiBrush = annBrush.Create(converter, AnnRectangle.Empty)) 
   { 
      using(Font gdiFont = annFont.Create(graphics, converter)) 
      { 
         graphics.DrawString(str, gdiFont, gdiBrush, x, y); 
      } 
   } 
}

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnFont

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