Partilhar via


Propriedade Bookmark.CharacterWidth

Obtém ou define a largura de caractere do texto de Bookmark de controle.

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

Sintaxe

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

Valor de propriedade

Tipo: Microsoft.Office.Interop.Word.WdCharacterWidth
Dentre as WdCharacterWidth valores.

Exemplos

O exemplo de código a seguir adiciona um Bookmark o controle com texto e altera a largura de caractere do texto para caracteres de meia largura.

Este exemplo é para uma personalização em nível de documento.

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