DocumentBase.ConsecutiveHyphensLimit 属性

获取或设置能够以连字符结尾的连续行的最大数目。

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

语法

声明
Public Property ConsecutiveHyphensLimit As Integer
public int ConsecutiveHyphensLimit { get; set; }

属性值

类型:System.Int32
能够以连字符结尾的连续行的最大数目。

备注

如果此属性设置为 0(零),则所有的连续行都能够以连字符结尾。

示例

下面的代码示例将能够以连字符结尾的连续行的数目限制在 2。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentConsecutiveHyphensLimit()
    Me.AutoHyphenation = True
    Me.ConsecutiveHyphensLimit = 2
End Sub
private void DocumentConsecutiveHyphensLimit()
{
    this.AutoHyphenation = true;
    this.ConsecutiveHyphensLimit = 2;
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间