MinMaxParagraphWidth Structure
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.
Représente la largeur de paragraphe la plus petite et la plus grande possible pouvant contenir la totalité du contenu textuel spécifié.
public value class MinMaxParagraphWidth : IEquatable<System::Windows::Media::TextFormatting::MinMaxParagraphWidth>
public struct MinMaxParagraphWidth : IEquatable<System.Windows.Media.TextFormatting.MinMaxParagraphWidth>
type MinMaxParagraphWidth = struct
Public Structure MinMaxParagraphWidth
Implements IEquatable(Of MinMaxParagraphWidth)
- Héritage
- Implémente
Exemples
L’exemple suivant montre comment utiliser la MinWidth propriété pour générer la largeur minimale du paragraphe pour les lignes de texte mises en forme.
MinMaxParagraphWidth minMaxParaWidth =
formatter.FormatMinMaxParagraphWidth(customTextSource, 0, customTextParagraphProperties);
// Format each line of text from the text store and draw it.
while (textStorePosition < customTextSource.Text.Length)
{
// Create a textline from the text store using the TextFormatter object.
using (TextLine myTextLine = formatter.FormatLine(
customTextSource,
textStorePosition,
minMaxParaWidth.MinWidth,
customTextParagraphProperties,
null))
{
// Draw the formatted text into the drawing context.
myTextLine.Draw(drawingContext, linePosition, InvertAxes.None);
// Update the index position in the text store.
textStorePosition += myTextLine.Length;
// Update the line position coordinate for the displayed line.
linePosition.Y += myTextLine.Height;
}
}
Dim minMaxParaWidth As MinMaxParagraphWidth = formatter.FormatMinMaxParagraphWidth(customTextSource, 0, customTextParagraphProperties)
' Format each line of text from the text store and draw it.
Do While textStorePosition < customTextSource.Text.Length
' Create a textline from the text store using the TextFormatter object.
Using myTextLine As TextLine = formatter.FormatLine(customTextSource, textStorePosition, minMaxParaWidth.MinWidth, customTextParagraphProperties, Nothing)
' Draw the formatted text into the drawing context.
myTextLine.Draw(drawingContext, linePosition, InvertAxes.None)
' Update the index position in the text store.
textStorePosition += myTextLine.Length
' Update the line position coordinate for the displayed line.
linePosition.Y += myTextLine.Height
End Using
Loop
Propriétés
MaxWidth |
Obtient la largeur de paragraphe la plus grande possible pouvant contenir la totalité du contenu textuel spécifié. |
MinWidth |
Obtient la largeur de paragraphe le plus petite possible pouvant contenir la totalité du contenu textuel spécifié. |
Méthodes
Equals(MinMaxParagraphWidth) |
Détermine si le CharacterBufferReference est égal à l'objet CharacterBufferReference actif. |
Equals(Object) |
Détermine si l'objet spécifié est identique à l'objet CharacterBufferReference actuel. |
GetHashCode() |
Sert de fonction de hachage pour CharacterBufferReference. Son utilisation est indiquée dans les algorithmes de hachage et les structures de données telles qu’une table de hachage. |
Opérateurs
Equality(MinMaxParagraphWidth, MinMaxParagraphWidth) |
Compare deux chaînes CharacterBufferReference pour vérifier leur égalité. |
Inequality(MinMaxParagraphWidth, MinMaxParagraphWidth) |
Compare deux objets CharacterBufferReference pour vérifier leur inégalité. |