Compartir a través de


Document.Content (Propiedad) (2007 System)

Actualización: noviembre 2007

Obtiene un objeto Range que representa el artículo principal del documento.

Espacio de nombres:  Microsoft.Office.Tools.Word
Ensamblado:  Microsoft.Office.Tools.Word.v9.0 (en Microsoft.Office.Tools.Word.v9.0.dll)

Sintaxis

<BrowsableAttribute(False)> _
Public ReadOnly Property Content As Range

Dim instance As Document
Dim value As Range

value = instance.Content
[BrowsableAttribute(false)]
public Range Content { get; }

Valor de propiedad

Tipo: Microsoft.Office.Interop.Word.Range

Un objeto Range que representa el artículo principal del documento.

Ejemplos

En el ejemplo de código siguiente se agrega texto al primer párrafo del documento y después se crea un intervalo que incluye todo el contenido del documento. A continuación, el código establece en 24 el tamaño de fuente del contenido del intervalo.

Se trata de un ejemplo para una personalización en el nivel del documento.

Private Sub DocumentContent()
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.Text = "This is some sample text."
    Dim myRange As Word.Range = Me.Content
    myRange.Font.Size = 24
End Sub
private void DocumentContent()
{
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.Text = "This is some sample text.";
    Word.Range myRange = this.Content;
    myRange.Font.Size = 24;
}

Permisos

Vea también

Referencia

Document (Clase)

Document (Miembros)

Microsoft.Office.Tools.Word (Espacio de nombres)