Condividi tramite


TextFormatter.FormatMinMaxParagraphWidth Metodo

Definizione

Restituisce un valore che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

Overload

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties)

Restituisce un valore che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties, TextRunCache)

Restituisce un valore che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties)

Restituisce un valore che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

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

Parametri

textSource
TextSource

Oggetto TextSource che rappresenta l’origine del testo per la riga.

firstCharIndex
Int32

Valore Int32 che specifica l'indice dei caratteri del carattere iniziale della riga.

paragraphProperties
TextParagraphProperties

Un oggetto TextParagraphProperties che rappresenta le proprietà del paragrafo, ad esempio la direzione del flusso, l’allineamento o il rientro.

Restituisce

MinMaxParagraphWidth

Un valore MinMaxParagraphWidth che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

Esempio

Nell'esempio seguente viene illustrato come utilizzare il FormatMinMaxParagraphWidth metodo per generare la larghezza minima del paragrafo per le righe formattate di testo.

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

Commenti

Il testo seguente usa la larghezza minima del paragrafo per il testo di origine, che viene visualizzato come più righe. La larghezza minima del paragrafo corrisponde alla parola con la larghezza maggiore, in questo caso la parola "saltato". Si noti che più parole possono essere visualizzate nella stessa riga, purché la larghezza totale non superi la larghezza minima del paragrafo.

Formattatore di testo che usa la larghezza minima di paragrafo
Larghezza minima paragrafo

Si applica a

FormatMinMaxParagraphWidth(TextSource, Int32, TextParagraphProperties, TextRunCache)

Restituisce un valore che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

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

Parametri

textSource
TextSource

Oggetto TextSource che rappresenta l’origine del testo per la riga.

firstCharIndex
Int32

Valore Int32 che specifica l'indice dei caratteri del carattere iniziale della riga.

paragraphProperties
TextParagraphProperties

Un oggetto TextParagraphProperties che rappresenta le proprietà del paragrafo, ad esempio la direzione del flusso, l’allineamento o il rientro.

textRunCache
TextRunCache

Un oggetto TextRunCache che rappresenta il meccanismo della memorizzazione nella cache per il layout del testo.

Restituisce

MinMaxParagraphWidth

Un valore MinMaxParagraphWidth che rappresenta la maggiore e la minore larghezza possibili del paragrafo che possono contenere completamente il testo specificato.

Si applica a