Udostępnij za pośrednictwem


TextFormatter.FormatMinMaxParagraphWidth Metoda

Definicja

Zwraca wartość reprezentującą najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

Przeciążenia

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties)

Zwraca wartość reprezentującą najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties, TextRunCache)

Zwraca wartość reprezentującą najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties)

Zwraca wartość reprezentującą najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

public:
 abstract System::Windows::Media::TextFormatting::MinMaxParagraphWidth FormatMinMaxParagraphWidth(System::Windows::Media::TextFormatting::TextSource ^ textSource, int firstCharIndex, System::Windows::Media::TextFormatting::TextParagraphProperties ^ paragraphProperties);
public abstract System.Windows.Media.TextFormatting.MinMaxParagraphWidth FormatMinMaxParagraphWidth (System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties);
abstract member FormatMinMaxParagraphWidth : System.Windows.Media.TextFormatting.TextSource * int * System.Windows.Media.TextFormatting.TextParagraphProperties -> System.Windows.Media.TextFormatting.MinMaxParagraphWidth
Public MustOverride Function FormatMinMaxParagraphWidth (textSource As TextSource, firstCharIndex As Integer, paragraphProperties As TextParagraphProperties) As MinMaxParagraphWidth

Parametry

textSource
TextSource

TextSource Obiekt reprezentujący źródło tekstu dla wiersza.

firstCharIndex
Int32

Int32 Wartość określająca indeks znaków początkowego znaku w wierszu.

paragraphProperties
TextParagraphProperties

TextParagraphProperties Obiekt reprezentujący właściwości akapitu, takie jak kierunek przepływu, wyrównanie lub wcięcie.

Zwraca

MinMaxParagraphWidth

MinMaxParagraphWidth Wartość reprezentująca najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą FormatMinMaxParagraphWidth metody wygenerować minimalną szerokość akapitu dla sformatowanych wierszy tekstu.

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

Uwagi

Poniższy tekst używa minimalnej szerokości akapitu dla tekstu źródłowego, który jest wyświetlany jako wiele wierszy. Minimalna szerokość akapitu odpowiada słowu o największej szerokości — w tym przypadku słowo "skoczyło". Zwróć uwagę, że wiele wyrazów może występować w tym samym wierszu, o ile całkowita szerokość akapitu nie przekracza minimalnej szerokości akapitu.

Formatowanie tekstu przy użyciu minimalnej szerokości akapitu
Minimalna szerokość akapitu

Dotyczy

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties, TextRunCache)

Zwraca wartość reprezentującą najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

public:
 abstract System::Windows::Media::TextFormatting::MinMaxParagraphWidth FormatMinMaxParagraphWidth(System::Windows::Media::TextFormatting::TextSource ^ textSource, int firstCharIndex, System::Windows::Media::TextFormatting::TextParagraphProperties ^ paragraphProperties, System::Windows::Media::TextFormatting::TextRunCache ^ textRunCache);
public abstract System.Windows.Media.TextFormatting.MinMaxParagraphWidth FormatMinMaxParagraphWidth (System.Windows.Media.TextFormatting.TextSource textSource, int firstCharIndex, System.Windows.Media.TextFormatting.TextParagraphProperties paragraphProperties, System.Windows.Media.TextFormatting.TextRunCache textRunCache);
abstract member FormatMinMaxParagraphWidth : System.Windows.Media.TextFormatting.TextSource * int * System.Windows.Media.TextFormatting.TextParagraphProperties * System.Windows.Media.TextFormatting.TextRunCache -> System.Windows.Media.TextFormatting.MinMaxParagraphWidth
Public MustOverride Function FormatMinMaxParagraphWidth (textSource As TextSource, firstCharIndex As Integer, paragraphProperties As TextParagraphProperties, textRunCache As TextRunCache) As MinMaxParagraphWidth

Parametry

textSource
TextSource

TextSource Obiekt reprezentujący źródło tekstu dla wiersza.

firstCharIndex
Int32

Int32 Wartość określająca indeks znaków początkowego znaku w wierszu.

paragraphProperties
TextParagraphProperties

TextParagraphProperties Obiekt reprezentujący właściwości akapitu, takie jak kierunek przepływu, wyrównanie lub wcięcie.

textRunCache
TextRunCache

TextRunCache Obiekt reprezentujący mechanizm buforowania dla układu tekstu.

Zwraca

MinMaxParagraphWidth

MinMaxParagraphWidth Wartość reprezentująca najmniejszą i największą możliwą szerokość akapitu, która może w pełni zawierać określoną zawartość tekstową.

Dotyczy