1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AP_Context ctx = new AP_Context();
ctx.setAlignment(TextAlignment.CENTER);
ctx.setFrame(U8_Frames.borderLight());
ctx.setFrameTopBottomMargin(1);
ctx.setTextTopBottomMargin(1);
ctx.setTextLeftRightMargin(1);
AsciiParagraph ap = new AsciiParagraph(ctx);
ap.addText(new LoremIpsum().getWords(9));
System.out.println(ap.render(25));
ctx.setFrameMode(TA_FrameOptions.THEME_CORNERS_ONLY);
ctx.setFrameTopBottomMargin(0);
ctx.setTextTopBottomMargin(0);
ctx.setTextLeftRightMargin(0);
System.out.println(ap.render(25));
ctx.setFrameMode(TA_FrameOptions.THEME_LINE_TOPBOTTOM);
System.out.println(ap.render(25));