right-click paragraph missing inside table

S

shank

How do I edit paragraph attributes inside a table cell? Right-click >
Paragraph is gone. Outside the table, no problem.

thanks!
 
T

Terry Farrell

Either add the paragraph option to the context (right-click) menu or use the
main toolbar. How depends on which version of Word you are using.
 
S

shank

Windows 2007
I cannot find a reference in the HELP as to how to customize the contet
menu. Suggestions?

thanks!
 
S

Suzanne S. Barnhill

Well, there is no easy way to customize context menus in Word 2007,
unfortunately.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
 
T

Terry Farrell

That's an option that was destroyed in Word 2007. You'll have to use the
Paragraph dialog by clicking on the launch arrow in the Paragraph Group on
the Home Ribbon.

Terry
 
K

Klaus Linke

Terry Farrell said:
That's an option that was destroyed in Word 2007. You'll have to use the
Paragraph dialog by clicking on the launch arrow in the Paragraph Group on
the Home Ribbon.

It should still be possible to add/remove stuff on the context menus with a
macro, though I haven't tested in Word 2007.

Say to add the "Paragraph..." control to the "Table Text" context menu:

CommandBars("Table Text").Controls.Add ID:=779

And to remove it again:

Dim myCB As CommandBar
Set myCB = CommandBars("Table Text")
Dim myCBC As CommandBarControl

For Each myCBC In myCB.Controls
If myCBC.ID = 779 Then
myCBC.Delete
End If
Next

You can retrieve the needed ID (here 779) looking it up on some toolbar or
menu where you know the command is found (or where you have temporarily
placed it):
? CommandBars("Format").Controls(2).Caption,
CommandBars("Format").Controls(2).ID

Or you might look it up on some lists available from Microsoft or from the
web (... though I don't have a link handy).
The names of the context menus (here "Table Text") can also be hard to
figure out.

Klaus
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top