|
From: Rotorman on 13 Jun 2008 10:40 How can I place alternating gray bars on my text document to make scanning across the page easier?
From: CyberTaz on 13 Jun 2008 19:32 What version of Word? It might be possible to "rig" something but not by way of any built-in option. Regards |:>) Bob Jones [MVP] Office:Mac On 6/13/08 10:40 AM, in article B50352AE-7FBB-404D-BB8C-0CF2E634F39E(a)microsoft.com, "Rotorman" <Rotorman(a)discussions.microsoft.com> wrote: > How can I place alternating gray bars on my text document to make scanning > across the page easier?
From: StevenM on 13 Jun 2008 21:20 To: Rotorman, Is each line a paragraph? (A "paragraph" is merely text which ends with a paragraph mark. By toggling the Show/Hide icon, you can see the otherwise invisible paragraphs.) If so, would it be possible to put your text in a table? If every text is a paragraph, you could place it into a one-column table. Once the text is in a table. You could run the following macro. '**** '* Macro: ShadeEveryOtherRow shades every other row of a table. '* If you add new rows to the table, just re-run this macro. '* If you want the first row to be shaded, change "bClear = True" to False. '* There are a number of different shades of Grey possible, '* wdColorGray05 is very light, wdColorGray50 is very dark, '* by increments of five, there are shades between these two. '**** Sub ShadeEveryOtherRow() Dim oRow As Row Dim bClear As Boolean If Selection.Information(wdWithInTable) = False Then MsgBox "The cursor must be positioned in the table you want to shade." _ & vbCr & vbCr & "Position the cursor and run this macro again." Else bClear = True For Each oRow In Selection.Tables(1).Rows If bClear Then oRow.Shading.BackgroundPatternColor = wdColorWhite Else oRow.Shading.BackgroundPatternColor = wdColorGray10 End If bClear = Not bClear Next oRow End If End Sub Steven Craig Miller "Rotorman" wrote: > How can I place alternating gray bars on my text document to make scanning > across the page easier?
|
Pages: 1 Prev: header appears on "New" page Next: page layout not showing photos |