R
Rick
[moved thread from Word.PageLayout...]:
I've learned that to add a tab stop at 4" to the current section I do
this:
Dim oRg As Range
Set oRg = Selection.Sections(1).Range
oRg.Paragraphs.TabStops.Add Position:=InchesToPoints(4),
Alignment:=wdAlignTabLeft
Suppose later on in the section I realize that for the remainder of
the section (current insertion point onward) I need to clear the tab
stop I just set above (while leaving the text above my current
insertion point formatted according to that tab stop), and then add a
tab stop to take effect only from my current position till the rest of
the section?
I'm probably not thinking this through correctly as my 4" tab stop
really isn't for the entire section, but the 'range' for which I
really want to set that tab stop isn't easily defined. (I know I'm
thinking in terms of 'position' rather than objects...)
Any help would be appreciated.
I've learned that to add a tab stop at 4" to the current section I do
this:
Dim oRg As Range
Set oRg = Selection.Sections(1).Range
oRg.Paragraphs.TabStops.Add Position:=InchesToPoints(4),
Alignment:=wdAlignTabLeft
Suppose later on in the section I realize that for the remainder of
the section (current insertion point onward) I need to clear the tab
stop I just set above (while leaving the text above my current
insertion point formatted according to that tab stop), and then add a
tab stop to take effect only from my current position till the rest of
the section?
I'm probably not thinking this through correctly as my 4" tab stop
really isn't for the entire section, but the 'range' for which I
really want to set that tab stop isn't easily defined. (I know I'm
thinking in terms of 'position' rather than objects...)
Any help would be appreciated.