Partager via


ICanvas.DrawString Méthode

Définition

Surcharges

DrawString(String, Single, Single, HorizontalAlignment)

Dessine une chaîne de texte sur le canevas.

DrawString(String, Single, Single, Single, Single, HorizontalAlignment, VerticalAlignment, TextFlow, Single)

Dessine une chaîne de texte dans une zone englobante sur le canevas.

DrawString(String, Single, Single, HorizontalAlignment)

Source:
ICanvas.cs
Source:
ICanvas.cs

Dessine une chaîne de texte sur le canevas.

public:
 void DrawString(System::String ^ value, float x, float y, Microsoft::Maui::Graphics::HorizontalAlignment horizontalAlignment);
public void DrawString (string value, float x, float y, Microsoft.Maui.Graphics.HorizontalAlignment horizontalAlignment);
abstract member DrawString : string * single * single * Microsoft.Maui.Graphics.HorizontalAlignment -> unit
Public Sub DrawString (value As String, x As Single, y As Single, horizontalAlignment As HorizontalAlignment)

Paramètres

value
String

Texte à afficher.

x
Single

Coordonnée de départ x .

y
Single

Coordonnée de départ y .

horizontalAlignment
HorizontalAlignment

Options d’alignement horizontal pour aligner la chaîne.

Remarques

Pour dessiner du texte attribué, utilisez DrawText(IAttributedText, Single, Single, Single, Single) à la place.

S’applique à

DrawString(String, Single, Single, Single, Single, HorizontalAlignment, VerticalAlignment, TextFlow, Single)

Source:
ICanvas.cs
Source:
ICanvas.cs

Dessine une chaîne de texte dans une zone englobante sur le canevas.

public void DrawString (string value, float x, float y, float width, float height, Microsoft.Maui.Graphics.HorizontalAlignment horizontalAlignment, Microsoft.Maui.Graphics.VerticalAlignment verticalAlignment, Microsoft.Maui.Graphics.TextFlow textFlow = Microsoft.Maui.Graphics.TextFlow.ClipBounds, float lineSpacingAdjustment = 0);
abstract member DrawString : string * single * single * single * single * Microsoft.Maui.Graphics.HorizontalAlignment * Microsoft.Maui.Graphics.VerticalAlignment * Microsoft.Maui.Graphics.TextFlow * single -> unit
Public Sub DrawString (value As String, x As Single, y As Single, width As Single, height As Single, horizontalAlignment As HorizontalAlignment, verticalAlignment As VerticalAlignment, Optional textFlow As TextFlow = Microsoft.Maui.Graphics.TextFlow.ClipBounds, Optional lineSpacingAdjustment As Single = 0)

Paramètres

value
String

Texte à afficher.

x
Single

Coordonnée de départ x du cadre englobant.

y
Single

Coordonnée de départ y du cadre englobant.

width
Single

Largeur du cadre englobant.

height
Single

Hauteur du cadre englobant.

horizontalAlignment
HorizontalAlignment

Options d’alignement horizontal pour aligner la chaîne dans le cadre englobant.

verticalAlignment
VerticalAlignment

Options d’alignement vertical pour aligner la chaîne dans la zone englobante.

textFlow
TextFlow

Spécifie si le texte sera clippé au cas où il dépasse la zone englobante. La valeur par défaut est ClipBounds.

lineSpacingAdjustment
Single

Ajustement de l’espacement entre les lignes. La valeur par défaut est 0.

S’applique à