Partilhar via


Propriedade DocumentBase.SummaryViewMode

Obtém ou define o modo de que exibição de um resumo.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (em Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Sintaxe

'Declaração
Public Property SummaryViewMode As WdSummaryMode
    Get
    Set
public WdSummaryMode SummaryViewMode { get; set; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Word.WdSummaryMode
Dentre as WdSummaryMode valores.

Comentários

Essa propriedade corresponde do tipo de resumo opções na AutoResumo caixa de diálogo.

Exemplos

O exemplo de código a seguir adiciona texto ao primeiro parágrafo do documento. O código, em seguida, exibe o resumo e define o nível de detalhe para 50 por cento. Para usar esse exemplo, executá-lo do ThisDocument a classe em um projeto de nível de documento.

Private Sub DocumentSummaryLength()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Me.Paragraphs(1).Range.Text = "The SummaryLength property" & _
        " returns or sets the length of the summary as a " & _
        " percentage of the document length. The larger the number," & _
        " the more detail that's included in the summary."

    Me.SummaryViewMode = Word.WdSummaryMode.wdSummaryModeHighlight

    Me.ShowSummary = True
    Me.SummaryLength = 50
End Sub 
private void DocumentSummaryLength()
{

    this.Paragraphs[1].Range.InsertParagraphBefore();
    this.Paragraphs[1].Range.Text = "The SummaryLength property"
        + " returns or sets the length of the summary as a "
        + " percentage of the document length. The larger the number,"
        + " the more detail that's included in the summary.";

    this.SummaryViewMode = Word.WdSummaryMode.wdSummaryModeHighlight;

    this.ShowSummary = true;
    this.SummaryLength = 50;
}

Segurança do .NET Framework

Consulte também

Referência

DocumentBase Classe

Namespace Microsoft.Office.Tools.Word