Freigeben über


FontFamily.GetCellDescent-Methode

Gibt den Zellabstieg (Versalhöhe) für das FontFamily-Objekt des angegebenen Schriftschnitts in Entwurfseinheiten zurück.

Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)

Syntax

'Declaration
Public Function GetCellDescent ( _
    style As FontStyle _
) As Integer
'Usage
Dim instance As FontFamily
Dim style As FontStyle
Dim returnValue As Integer

returnValue = instance.GetCellDescent(style)
public int GetCellDescent (
    FontStyle style
)
public:
int GetCellDescent (
    FontStyle style
)
public int GetCellDescent (
    FontStyle style
)
public function GetCellDescent (
    style : FontStyle
) : int

Parameter

  • style
    Ein FontStyle, der Informationen zum Schriftschnitt der Schriftart enthält.

Rückgabewert

Die Zellabstiegsmetrik für dieses FontFamily-Objekt, das den angegebenen FontStyle verwendet.

Beispiel

Das folgende Codebeispiel ist für die Verwendung mit Windows Forms vorgesehen und erfordert PaintEventArgse, wobei es sich um einen Parameter des Paint-Ereignishandlers handelt. Der Code führt die folgenden Aktionen aus:

  • Erstellt eine FontFamily.

  • Ruft den Zellabstieg (Unterlänge) für die Schriftartfamilie ab.

  • Zeichnet den Wert des Zellabstiegs (Versalhöhe) als Text auf dem Bildschirm.

Public Sub GetCellDescent_Example(ByVal e As PaintEventArgs)

    ' Create a FontFamily object.
    Dim descentFontFamily As New FontFamily("arial")

    ' Get the cell descent of the font family in design units.
    Dim cellDescent As Integer = _
    descentFontFamily.GetCellDescent(FontStyle.Regular)

    ' Draw the result as a string to the screen.
    e.Graphics.DrawString("descentFontFamily.GetCellDescent() returns " _
    & cellDescent.ToString() & ".", New Font(descentFontFamily, 16), _
    Brushes.Black, New PointF(0, 0))
End Sub
public void GetCellDescent_Example(PaintEventArgs e)
{
    // Create a FontFamily object.
    FontFamily descentFontFamily = new FontFamily("arial");
             
    // Get the cell descent of the font family in design units.
    int cellDescent = descentFontFamily.GetCellDescent(FontStyle.Regular);
             
    // Draw the result as a string to the screen.
    e.Graphics.DrawString(
        "descentFontFamily.GetCellDescent() returns " + cellDescent.ToString() + ".",
        new Font(descentFontFamily, 16),
        Brushes.Black,
        new PointF(0, 0));
}
public:
   void GetCellDescent_Example( PaintEventArgs^ e )
   {
      // Create a FontFamily object.
      FontFamily^ descentFontFamily = gcnew FontFamily( "arial" );

      // Get the cell descent of the font family in design units.
      int cellDescent = descentFontFamily->GetCellDescent( FontStyle::Regular );

      // Draw the result as a string to the screen.
      e->Graphics->DrawString( String::Format( "descentFontFamily.GetCellDescent() returns {0}.", cellDescent ),
            gcnew System::Drawing::Font( descentFontFamily,16 ), Brushes::Black, PointF(0,0) );
   }
public void GetCellDescent_Example(PaintEventArgs e)
{
    // Create a FontFamily object.
    FontFamily descentFontFamily = new FontFamily("arial");

    // Get the cell descent of the font family in design units.
    int cellDescent = descentFontFamily.GetCellDescent(FontStyle.Regular);

    // Draw the result as a string to the screen.
    e.get_Graphics().DrawString(
        "descentFontFamily.GetCellDescent() returns "  
        +  System.Convert.ToString(cellDescent) + ".", 
        new Font(descentFontFamily, 16), 
        Brushes.get_Black(), new PointF(0, 0));
} //GetCellDescent_Example

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

FontFamily-Klasse
FontFamily-Member
System.Drawing-Namespace

Weitere Ressourcen

Gewusst wie: Abrufen von Schriftarteigenschaften