La subroutine VBA in fondo a questa risposta mostra come eseguire questa operazione.
Esso utilizza la selezione corrente, collassare al punto di partenza prima in modo da non devono preoccuparsi di selezioni multi-segmento:
Selection.Collapse Direction:=wdCollapseStart
Successivamente controlla che la selezione per assicurarsi che sia all'interno di una tabella
If Not Selection.Information(wdWithInTable) Then
MsgBox "Can only run this within a table"
Exit Sub
End If
La tabella è quindi accessibile facendo riferimento a Selection.Tables(1)
.
Il codice sottostante era una semplice prova di concetto che semplicemente commutato ciascuna delle celle di partenza in ciascuna riga della tabella a uno inserire o eliminare un marcatore barra verticale.
Sub VertBar()
' Collapse the range to start so as to not have to deal with '
' multi-segment ranges. Then check to make sure cursor is '
' within a table. '
Selection.Collapse Direction:=wdCollapseStart
If Not Selection.Information(wdWithInTable) Then
MsgBox "Can only run this within a table"
Exit Sub
End If
' Process every row in the current table. '
Dim row As Integer
Dim rng As Range
For row = 1 To Selection.Tables(1).Rows.Count
' Get the range for the leftmost cell. '
Set rng = Selection.Tables(1).Rows(row).Cells(1).Range
' For each, toggle text in leftmost cell. '
If Left(rng.Text, 2) = "| " Then
' Change range to first two characters and delete them. '
rng.Collapse Direction:=wdCollapseStart
rng.MoveEnd Unit:=wdCharacter, Count:=2
rng.Delete
Else
' Just insert the vertical bar. '
rng.InsertBefore ("| ")
End If
Next
End Sub
Perfetto! Questo è esattamente ciò di cui avevo bisogno @enifeder: ActiveDocument.Range (0, Selection.Tables (1) .Range.End) .Tables.count – DRC