Footer margin

R

Ram

Is it possible to specify margin for footer section(word doc). If yes, how
can I do it using word VBA.
 
C

Charles Kenyon

Yes, it is possible, sort of. What is it you are trying to accomplish by
doing so?

Note that each document can have many footer ranges although many have only
one active.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide


--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
C

Charles Kenyon

Also, please specify the version of Word you contemplate your vba running
with.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide


--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
C

CyberTaz

Header & Footer margins are handled through File>Page Setup>Layout. This may
be what you are looking for - it sets both the H & F margin to 1":

With ActiveDocument.PageSetup
.HeaderDistance = InchesToPoints(1)
.FooterDistance = InchesToPoints(1)
End With

HTH |:>)
 
R

Ram

Hi,
I have multi page document with a footnote on eah page. I would like to
get rid of the gap between end of the table and footnote. I can do it
manually by selecting footer and then moving the footer top margin uo using
mouse. I am trying to do the same thing using VBA. I am not getting succeeded.
 
R

Ram

I am talking about footer. I want to adjust(reduce) the amount of space that
appears between the document text and the footer.
 
Top