DocumentBase.AutoSummarize 方法

创建文档的自动摘要。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public Function AutoSummarize ( _
    ByRef length As Object, _
    ByRef mode As Object, _
    ByRef updateProperties As Object _
) As Range
public Range AutoSummarize(
    ref Object length,
    ref Object mode,
    ref Object updateProperties
)

参数

  • length
    类型:System.Object%
    摘要的长度(以占文档总长的百分比计,该数字越大,摘要中包括的信息越详细)。
  • updateProperties
    类型:System.Object%
    如果为 true,则更新**“属性”对话框中的“关键字”“注释”**框,以反映文档摘要的内容。

返回值

类型:Microsoft.Office.Interop.Word.Range
一个包括文档摘要的 Range

备注

Mode 参数的值与**“自动编写摘要”**对话框中的选项相对应。

可选参数

有关可选参数的信息,请参见Office 解决方案中的可选参数

示例

下面的代码示例使用 AutoSummarize 方法,通过创建新文档并插入指定的摘要来创建活动文档的自动摘要。 此示例假定当前文档不是空的。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Function DocumentAddSummary() As Word.Range

    Return Me.AutoSummarize(Length:=30, _
        Mode:=Word.WdSummaryMode.wdSummaryModeCreateNew, _
        UpdateProperties:=True)
End Function
private Word.Range DocumentAddSummary()
{
    object length = 30;
    object mode = Word.WdSummaryMode.wdSummaryModeCreateNew;
    object updateProperties = true;

    return this.AutoSummarize(ref length, ref mode, ref updateProperties);
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间