共用方式為


Bookmark.FitTextWidth 屬性

取得或設定寬度 (以目前的度量單位),此寬度能讓 Microsoft Office Word 符合在 Bookmark 控制項中的文字。

命名空間:  Microsoft.Office.Tools.Word
組件:  Microsoft.Office.Tools.Word (在 Microsoft.Office.Tools.Word.dll 中)

語法

'宣告
Property FitTextWidth As Single
float FitTextWidth { get; set; }

屬性值

型別:System.Single
Microsoft Office Word 能符合 Bookmark 控制項中文字的寬度。

範例

下列程式碼範例將有文字的 Bookmark 控制項加入至第一個段落,然後變更 FitTextWidth 屬性為一英吋。

這是示範文件層級自訂的範例。

Private Sub BookmarkFitTextWidth()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
    Bookmark1.Text = "This is sample bookmark text."
    Bookmark1.FitTextWidth = Application.InchesToPoints(1)

End Sub
private void BookmarkFitTextWidth()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This is sample bookmark text.";
    bookmark1.FitTextWidth = Application.InchesToPoints(1);
}

.NET Framework 安全性

請參閱

參考

Bookmark 介面

Microsoft.Office.Tools.Word 命名空間