Articles in this section
Category / Section

How do I set the document page alignment?

1 min read

 

The section2.PageSetup.VerticalAlignment property is used to set the document page alignments like Top, Justified, Middle and Bottom.

C#

// Set the current section page alignment as Top.

section1.PageSetup.VerticalAlignment = PageAlignment.Top;

// Set the current section page alignment as Justified.

section2.PageSetup.VerticalAlignment = PageAlignment.Justified;

// Set the current section page alignment as Middle.

section3.PageSetup.VerticalAlignment = PageAlignment.Middle;

// Set the current section page alignment as Bottom.

section4.PageSetup.VerticalAlignment = PageAlignment.Bottom;

VB

' Set the current section page alignment as Top.

section1.PageSetup.VerticalAlignment = PageAlignment.Top

' Set the current section page alignment as Justified.

section2.PageSetup.VerticalAlignment = PageAlignment.Justified

' Set the current section page alignment as Middle.

section3.PageSetup.VerticalAlignment = PageAlignment.Middle

' Set the current section page alignment as Bottom.

section4.PageSetup.VerticalAlignment = PageAlignment.Bottom

Here is the sample.

Page_Alignment.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied