Font.GetHeight 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回此字型的行距。
多載
GetHeight() |
傳回此字型的行距,以像素為單位。 |
GetHeight(Graphics) |
傳回此字型之指定之 Graphics的目前單位中的行距。 |
GetHeight(Single) |
當繪製到具有指定垂直解析度的裝置時,傳回這個 Font 的高度,以圖元為單位。 |
GetHeight()
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
傳回此字型的行距,以像素為單位。
public:
float GetHeight();
public float GetHeight ();
member this.GetHeight : unit -> single
Public Function GetHeight () As Single
傳回
此字型的行距,以像素為單位。
備註
Font 的行距是兩行連續文字的底線之間的垂直距離。 因此,行距包含行之間的空格以及字元本身的高度。
如果字型的 Unit 屬性設定為 GraphicsUnit.Pixel以外的任何屬性,則會使用螢幕顯示器的垂直解析度來計算高度(以像素為單位)。 例如,假設字型單位是英吋,字型大小為0.3。 此外,假設針對對應的字型系列,em 高度為 2048,而行距為 2355。 對於垂直解析度為每英吋 96 點的螢幕顯示器,您可以計算高度,如下所示:
2355*(0.3/2048)*96 = 33.11719
適用於
GetHeight(Graphics)
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
傳回此字型之指定之 Graphics的目前單位中的行距。
public:
float GetHeight(System::Drawing::Graphics ^ graphics);
public float GetHeight (System.Drawing.Graphics graphics);
member this.GetHeight : System.Drawing.Graphics -> single
Public Function GetHeight (graphics As Graphics) As Single
參數
傳回
此字型的行距,以像素為單位。
例外狀況
graphics
null
。
範例
下列程式代碼範例是專為搭配 Windows Forms 使用而設計,而且需要 PaintEventArgse
,這是 Paint 事件處理程式的參數。 程式代碼會執行下列動作:
public:
void GetHeight_Example( PaintEventArgs^ e )
{
// Create a Font object.
System::Drawing::Font^ myFont = gcnew System::Drawing::Font( "Arial",16 );
//Draw text to the screen with myFont.
e->Graphics->DrawString( "This is the first line", myFont, Brushes::Black, PointF(0,0) );
//Get the height of myFont.
float height = myFont->GetHeight( e->Graphics );
//Draw text immediately below the first line of text.
e->Graphics->DrawString( "This is the second line", myFont, Brushes::Black, PointF(0,height) );
}
public void GetHeight_Example(PaintEventArgs e)
{
// Create a Font object.
Font myFont = new Font("Arial", 16);
//Draw text to the screen with myFont.
e.Graphics.DrawString("This is the first line",myFont,
Brushes.Black, new PointF(0, 0));
//Get the height of myFont.
float height = myFont.GetHeight(e.Graphics);
//Draw text immediately below the first line of text.
e.Graphics.DrawString(
"This is the second line",
myFont,
Brushes.Black,
new PointF(0, height));
}
Public Sub GetHeight_Example(ByVal e As PaintEventArgs)
' Create a Font object.
Dim myFont As New Font("Arial", 16)
'Draw text to the screen with myFont.
e.Graphics.DrawString("This is the first line", myFont, _
Brushes.Black, New PointF(0, 0))
'Get the height of myFont.
Dim height As Single = myFont.GetHeight(e.Graphics)
'Draw text immediately below the first line of text.
e.Graphics.DrawString("This is the second line", myFont, _
Brushes.Black, New PointF(0, height))
End Sub
備註
Font 的行距是兩行連續文字的底線之間的垂直距離。 因此,行距包含行之間的空格以及字元本身的高度。
如果字型的 Unit 屬性設定為 GraphicsUnit.Pixel以外的任何屬性,則會使用指定之 Graphics 對象的垂直解析度來計算高度,以像素為單位。 例如,假設字型單位是英吋,字型大小為0.3。 此外,假設針對對應的字型系列,em 高度為 2048,而行距為 2355。 如果 Graphics 物件具有 GraphicsUnit.Pixel 的 Unit 屬性值,且 DpiY 屬性值為每英吋 96 點,則高度會計算如下:
2355*(0.3/2048)*96 = 33.1171875
繼續進行相同的範例,假設 Graphics 物件的 Unit 屬性設定為 GraphicsUnit.Millimeter,而不是 GraphicsUnit.Pixel。 然後(使用 1 英吋 = 25.4 公厘)的高度,以公厘為單位計算如下:
2355*(0.3/2048)25.4 = 8.762256
另請參閱
適用於
GetHeight(Single)
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
- 來源:
- Font.cs
當繪製到具有指定垂直解析度的裝置時,傳回這個 Font 的高度,以圖元為單位。
public:
float GetHeight(float dpi);
public float GetHeight (float dpi);
member this.GetHeight : single -> single
Public Function GetHeight (dpi As Single) As Single
參數
- dpi
- Single
垂直解析度,以每英吋點為單位,用來計算字型的高度。
傳回
這個 Font的高度,以像素為單位。
備註
如果字型的 Unit 屬性設定為 GraphicsUnit.Pixel以外的任何屬性,則會使用螢幕顯示器的垂直解析度來計算高度(以像素為單位)。 例如,假設字型單位是英吋,字型大小為0.3。 此外,假設針對對應的字型系列,em 高度為 2048,而行距為 2355。 如果指定的垂直解析度為每英吋 96 點,則高度會計算如下:
2355*(0.3/2048)*96 = 33.1171875