Paragraph Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe Paragraph.
Sobrecargas
Paragraph() |
Inicializa uma nova instância vazia da classe Paragraph. |
Paragraph(Inline) |
Inicializa uma nova instância da classe Paragraph pegando um objeto Inline especificado como o conteúdo inicial. |
Paragraph()
Inicializa uma nova instância vazia da classe Paragraph.
public:
Paragraph();
public Paragraph ();
Public Sub New ()
Aplica-se a
Paragraph(Inline)
public:
Paragraph(System::Windows::Documents::Inline ^ inline);
public Paragraph (System.Windows.Documents.Inline inline);
new System.Windows.Documents.Paragraph : System.Windows.Documents.Inline -> System.Windows.Documents.Paragraph
Public Sub New (inline As Inline)
Parâmetros
Exemplos
O exemplo a seguir demonstra o uso desse construtor.
// A child Inline element for the new Paragraph element.
Run runx = new Run("Text to be hosted in the new paragraph...");
// After this line executes, the new element "parx"
// contains the specified Inline element, "runx".
Paragraph parx = new Paragraph(runx);
' A child Inline element for the new Paragraph element.
Dim runx As New Run("Text to be hosted in the new paragraph...")
' After this line executes, the new element "parx"
' contains the specified Inline element, "runx".
Dim parx As New Paragraph(runx)