ICanvas.GetStringSize Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetStringSize(String, IFont, Single) |
Calcule la zone qu’une chaîne occuperait si elle était dessinée sur le canevas. |
GetStringSize(String, IFont, Single, HorizontalAlignment, VerticalAlignment) |
Calcule la zone qu’une chaîne occuperait si elle était dessinée sur le canevas. |
GetStringSize(String, IFont, Single)
- Source:
- ICanvas.cs
- Source:
- ICanvas.cs
Calcule la zone qu’une chaîne occuperait si elle était dessinée sur le canevas.
public:
Microsoft::Maui::Graphics::SizeF GetStringSize(System::String ^ value, Microsoft::Maui::Graphics::IFont ^ font, float fontSize);
public Microsoft.Maui.Graphics.SizeF GetStringSize (string value, Microsoft.Maui.Graphics.IFont font, float fontSize);
abstract member GetStringSize : string * Microsoft.Maui.Graphics.IFont * single -> Microsoft.Maui.Graphics.SizeF
Public Function GetStringSize (value As String, font As IFont, fontSize As Single) As SizeF
Paramètres
- value
- String
Chaîne sur laquelle calculer la taille.
- font
- IFont
Type de police de la chaîne.
- fontSize
- Single
Taille de police de la chaîne.
Retours
Zone que la chaîne occuperait sur le canevas.
S’applique à
GetStringSize(String, IFont, Single, HorizontalAlignment, VerticalAlignment)
- Source:
- ICanvas.cs
- Source:
- ICanvas.cs
Calcule la zone qu’une chaîne occuperait si elle était dessinée sur le canevas.
public:
Microsoft::Maui::Graphics::SizeF GetStringSize(System::String ^ value, Microsoft::Maui::Graphics::IFont ^ font, float fontSize, Microsoft::Maui::Graphics::HorizontalAlignment horizontalAlignment, Microsoft::Maui::Graphics::VerticalAlignment verticalAlignment);
public Microsoft.Maui.Graphics.SizeF GetStringSize (string value, Microsoft.Maui.Graphics.IFont font, float fontSize, Microsoft.Maui.Graphics.HorizontalAlignment horizontalAlignment, Microsoft.Maui.Graphics.VerticalAlignment verticalAlignment);
abstract member GetStringSize : string * Microsoft.Maui.Graphics.IFont * single * Microsoft.Maui.Graphics.HorizontalAlignment * Microsoft.Maui.Graphics.VerticalAlignment -> Microsoft.Maui.Graphics.SizeF
Public Function GetStringSize (value As String, font As IFont, fontSize As Single, horizontalAlignment As HorizontalAlignment, verticalAlignment As VerticalAlignment) As SizeF
Paramètres
- value
- String
Chaîne sur laquelle calculer la taille.
- font
- IFont
Type de police de la chaîne.
- fontSize
- Single
Taille de police de la chaîne.
- horizontalAlignment
- HorizontalAlignment
Options d’alignement horizontal pour la chaîne.
- verticalAlignment
- VerticalAlignment
Options d’alignement vertical pour la chaîne.
Retours
Zone que la chaîne occuperait sur le canevas.