DocumentBase.ClickAndTypeParagraphStyle 属性

获取或设置由“即点即输”功能应用于文档中文本的默认段落样式。

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

语法

声明
Public Property ClickAndTypeParagraphStyle As Object
public Object ClickAndTypeParagraphStyle { get; set; }

属性值

类型:System.Object
由“即点即输”功能应用于文档中文本的默认段落样式。

备注

若要设置此属性,请指定样式的本地名称,该名称可以是整数、 WdBuiltinStyle 常数或者是一个表示样式的对象。

如果指定样式的 InUse 属性设置为 false,则将引发异常。

示例

下面的代码示例向前两个段落添加文本,将第一个段落的样式设置为纯文本,然后将 ClickAndTypeParagraphStyle 设置为纯文本。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentClickAndTypeParagraphStyle()

    Dim styleName As Object = "Plain Text"
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.Text = "This is sample text."
    Me.Paragraphs(2).Range.Text = "This is sample text."
    Me.Paragraphs(1).Range.Style = styleName

    If Me.Styles.Item(styleName).InUse Then
        Me.ClickAndTypeParagraphStyle = styleName
    Else
        MessageBox.Show(styleName & " is not in use yet.")
    End If

End Sub 
private void DocumentClickAndTypeParagraphStyle()
{

    object styleName = "Plain Text";
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.Text = "This is sample text.";
    this.Paragraphs[2].Range.Text = "This is sample text.";
    this.Paragraphs[1].Range.set_Style(ref styleName);

    if (this.Styles.get_Item(ref styleName).InUse)
    {
        this.ClickAndTypeParagraphStyle = styleName;
    }
    else
    {
        MessageBox.Show(styleName + " is not in use yet.");
    }
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间