java.lang.Object
com.aspose.words.ParagraphAlignment
public class ParagraphAlignment
- extends java.lang.Object
Utility class containing constants.
Specifies text alignment in a paragraph.
Example:
Shows how to construct an Aspose.Words document by hand.
Document doc = new Document();
// A blank document contains one section, one body and one paragraph.
// Call the "RemoveAllChildren" method to remove all those nodes,
// and end up with a document node with no children.
doc.removeAllChildren();
// This document now has no composite child nodes that we can add content to.
// If we wish to edit it, we will need to repopulate its node collection.
// First, create a new section, and then append it as a child to the root document node.
Section section = new Section(doc);
doc.appendChild(section);
// Set some page setup properties for the section.
section.getPageSetup().setSectionStart(SectionStart.NEW_PAGE);
section.getPageSetup().setPaperSize(PaperSize.LETTER);
// A section needs a body, which will contain and display all its contents
// on the page between the section's header and footer.
Body body = new Body(doc);
section.appendChild(body);
// Create a paragraph, set some formatting properties, and then append it as a child to the body.
Paragraph para = new Paragraph(doc);
para.getParagraphFormat().setStyleName("Heading 1");
para.getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
body.appendChild(para);
// Finally, add some content to do the document. Create a run,
// set its appearance and contents, and then append it as a child to the paragraph.
Run run = new Run(doc);
run.setText("Hello World!");
run.getFont().setColor(Color.RED);
para.appendChild(run);
Assert.assertEquals("Hello World!", doc.getText().trim());
doc.save(getArtifactsDir() + "Section.CreateManually.docx");
Field Summary |
static final int | LEFT = 0 | |
Text is aligned to the left.
|
static final int | CENTER = 1 | |
Text is centered horizontally.
|
static final int | RIGHT = 2 | |
Text is aligned to the right.
|
static final int | JUSTIFY = 3 | |
Text is aligned to both left and right.
|
static final int | DISTRIBUTED = 4 | |
Text is evenly distributed.
|
static final int | ARABIC_MEDIUM_KASHIDA = 5 | |
Arabic only. Kashida length for text is extended to a medium length determined by the consumer.
|
static final int | ARABIC_HIGH_KASHIDA = 7 | |
Arabic only. Kashida length for text is extended to its widest possible length.
|
static final int | ARABIC_LOW_KASHIDA = 8 | |
Arabic only. Kashida length for text is extended to a slightly longer length.
|
static final int | THAI_DISTRIBUTED = 9 | |
Thai only. Text is justified with an optimization for Thai.
|
LEFT = 0 | |
public static final int LEFT |
-
Text is aligned to the left.
CENTER = 1 | |
public static final int CENTER |
-
Text is centered horizontally.
RIGHT = 2 | |
public static final int RIGHT |
-
Text is aligned to the right.
JUSTIFY = 3 | |
public static final int JUSTIFY |
-
Text is aligned to both left and right.
DISTRIBUTED = 4 | |
public static final int DISTRIBUTED |
-
Text is evenly distributed.
ARABIC_MEDIUM_KASHIDA = 5 | |
public static final int ARABIC_MEDIUM_KASHIDA |
-
Arabic only. Kashida length for text is extended to a medium length determined by the consumer.
ARABIC_HIGH_KASHIDA = 7 | |
public static final int ARABIC_HIGH_KASHIDA |
-
Arabic only. Kashida length for text is extended to its widest possible length.
ARABIC_LOW_KASHIDA = 8 | |
public static final int ARABIC_LOW_KASHIDA |
-
Arabic only. Kashida length for text is extended to a slightly longer length.
THAI_DISTRIBUTED = 9 | |
public static final int THAI_DISTRIBUTED |
-
Thai only. Text is justified with an optimization for Thai.
See Also:
Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
Aspose.Words Support Forum - our preferred method of support.