Propriedade Bookmark.CharacterWidth

Obtém ou define a largura de caracteres de texto no controle de Bookmark .

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (em Microsoft.Office.Tools.Word.dll)

Sintaxe

'Declaração
Property CharacterWidth As WdCharacterWidth
WdCharacterWidth CharacterWidth { get; set; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Word.WdCharacterWidth
Um dos valores de WdCharacterWidth .

Exemplos

O exemplo de código a seguir adiciona um controle de Bookmark com texto e altera a largura de caracteres de texto para metade- caracteres de largura.

Este exemplo é para uma personalização da nível.

Private Sub BookmarkCharacterWidth()

    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.CharacterWidth = Word.WdCharacterWidth.wdWidthHalfWidth

End Sub
private void BookmarkCharacterWidth()
{
    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.CharacterWidth = Word.WdCharacterWidth
        .wdWidthHalfWidth;
}

Segurança do .NET Framework

Consulte também

Referência

Bookmark Interface

Namespace Microsoft.Office.Tools.Word