Heading Rows Repeat in VB.NET code

  • Thread starter Thread starter Laure Bowman
  • Start date Start date
L

Laure Bowman

How do I turn off Heading Rows Repeat for the current row
in a table programatically? I know how to do it
interactively but can't find the appropriate object/method
to use.

Thanks,
Laure Bowman
 
You may get a reply here, but note that this is not only an end user
newsgroup but one intended for "new users." You're much more likely to
attract the attention of someone who can help with programming in one of the
word.vba NGs.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Hi Laure,
How do I turn off Heading Rows Repeat for the current row
in a table programatically? I know how to do it
interactively but can't find the appropriate object/method
to use.
This is VBA syntax, but it's so simple, you shouldn't have
any trouble "translating" to .NET:

ActiveDocument.Tables(1).Rows(index).HeadingFormat = FALSE

Where (index) is the max row number with heading repeat.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun
8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow
question or reply in the newsgroup and not by e-mail :-)
 
Back
Top