MinMaxParagraphWidth Estrutura

Definição

Representa a menor e a maior larguras de parágrafo possíveis que contêm totalmente o conteúdo de texto especificado.

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)
Herança
MinMaxParagraphWidth
Implementações

Exemplos

O exemplo a seguir mostra como usar a MinWidth propriedade para gerar a largura mínima do parágrafo para as linhas de texto formatadas.

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

Propriedades

MaxWidth

Obtém a maior largura de parágrafo possível que pode conter completamente o conteúdo do texto especificado.

MinWidth

Obtém a menor largura de parágrafo possível que pode conter completamente o conteúdo do texto especificado.

Métodos

Equals(MinMaxParagraphWidth)

Determina se o CharacterBufferReference é igual ao objeto CharacterBufferReference atual.

Equals(Object)

Determina se o objeto especificado é igual ao objeto CharacterBufferReference atual.

GetHashCode()

Serve como uma função de hash para CharacterBufferReference. Ele é adequado para uso em algoritmos de hash e estruturas de dados como uma tabela de hash.

Operadores

Equality(MinMaxParagraphWidth, MinMaxParagraphWidth)

Compare duas cadeias de caracteres de CharacterBufferReference quanto à igualdade.

Inequality(MinMaxParagraphWidth, MinMaxParagraphWidth)

Compare dois objetos CharacterBufferReference quanto à desigualdade.

Aplica-se a

Confira também