MinMaxParagraphWidth Struktur
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Stellt die kleinstmögliche und größtmögliche Absatzbreite dar, die den angegebenen Textinhalt vollständig enthalten kann.
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)
- Vererbung
- Implementiert
Beispiele
Im folgenden Beispiel wird gezeigt, wie Sie die MinWidth Eigenschaft verwenden, um die Mindestabsatzbreite für die formatierten Textzeilen zu generieren.
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
Eigenschaften
MaxWidth |
Ruft die größtmögliche Absatzbreite ab, die den angegebenen Textinhalt vollständig enthalten kann. |
MinWidth |
Ruft die kleinstmögliche Absatzbreite ab, die den angegebenen Textinhalt vollständig enthalten kann. |
Methoden
Equals(MinMaxParagraphWidth) |
Bestimmt, ob die CharacterBufferReference und das aktuelle CharacterBufferReference-Objekt gleich sind. |
Equals(Object) |
Bestimmt, ob das angegebene Objekt und das aktuelle CharacterBufferReference-Objekt gleich sind. |
GetHashCode() |
Dient als Hashfunktion für CharacterBufferReference. Sie eignet sich für die Verwendung in Hashalgorithmen und Datenstrukturen, z. B. einer Hashtabelle. |
Operatoren
Equality(MinMaxParagraphWidth, MinMaxParagraphWidth) |
Überprüft zwei CharacterBufferReference-Zeichenfolgen auf Gleichheit. |
Inequality(MinMaxParagraphWidth, MinMaxParagraphWidth) |
Überprüft zwei CharacterBufferReference-Objekte auf Ungleichheit. |