DocumentBase.SummaryViewMode (Propiedad)
Obtiene o establece la manera en que se muestra un resumen.
Espacio de nombres: Microsoft.Office.Tools.Word
Ensamblado: Microsoft.Office.Tools.Word.v4.0.Utilities (en Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintaxis
'Declaración
Public Property SummaryViewMode As WdSummaryMode
Get
Set
public WdSummaryMode SummaryViewMode { get; set; }
Valor de propiedad
Tipo: Microsoft.Office.Interop.Word.WdSummaryMode
Uno de los valores de WdSummaryMode.
Comentarios
Esta propiedad corresponde a las opciones Tipo de resumen del cuadro de diálogo Autorresumen.
Ejemplos
En el ejemplo de código siguiente se agrega texto al primer párrafo del documento. A continuación, el código muestra el resumen y establece un nivel de detalle de 50 por ciento. Para usar este ejemplo, ejecútelo desde la clase ThisDocument en un proyecto de nivel 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;
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.