Centering Text in a JTextArea or JTextPane - Horizontal Text Alignment
Tag : java , By : n3txpert
Date : March 29 2020, 07:55 AM
may help you . You need to use a JTextPane and use attributes. The following should center all the text: StyledDocument doc = textPane.getStyledDocument();
SimpleAttributeSet center = new SimpleAttributeSet();
StyleConstants.setAlignment(center, StyleConstants.ALIGN_CENTER);
doc.setParagraphAttributes(0, doc.getLength(), center, false);
|
how to force a justified alignment on a pdfpcell
Date : March 29 2020, 07:55 AM
should help you out In the first example, you're working in "text mode" and the properties of the cell are respected. As soon as you use AddElement (), you're working in "composite mode" and the properties of the cell are ignored (as documented in my book). Instead, the properties of the separate elements are used.
|
iTextSharp: which alignment properties are used in a PdfPCell?
Tag : chash , By : nobodyzzz
Date : March 29 2020, 07:55 AM
will help you You are confusing text mode with composite mode. In the first code snippet, you work in text mode. This means that the content of the cell is considered to be text only and the properties of the cell are respected, whereas the properties of the elements added to the cell are ignored.
|
iTextSharp PdfPCell Alignment with Chunk
Tag : chash , By : Jonathan Bernard
Date : March 29 2020, 07:55 AM
This might help you See this answer for a discussion on Text Mode versus Composite Mode. Basically, if you use AddElement() you need to set the alignment on your object instead of the cell itself. Chunk doesn't have alignment, however, so you need to wrap your chunk in something that does which is the Paragraph. var table = new PdfPTable(1);
//Create our chunk with anchor
var webAddress = new Chunk("hello");
webAddress.SetAnchor("http://www.example.net/");
//Create a paragraph holding the chunk and set the alignment on _it_
var para = new Paragraph(webAddress);
para.Alignment = Element.ALIGN_CENTER;
//Create our cell
PdfPCell ProductCodeCell = new PdfPCell();
//Add the paragrph to it
ProductCodeCell.AddElement(para);
//Padding on the cell still works
ProductCodeCell.Padding = 30f;
//Add cell to table
table.AddCell(ProductCodeCell);
|
Horizontal alignment of multi-line text in a matplotlib text box
Tag : python , By : user130518
Date : March 29 2020, 07:55 AM
will help you It looks like the trick is the multialignment or ma named argument: import matplotlib.pyplot as plt
def lowerrighttext(ax,text, size=12, alpha = 0.5, color='k', dx=1.0/20, dy=1.0/20):
return ax.annotate(text, xy=(1-dx, dy), xycoords = 'axes fraction',
ha='right',va='bottom',ma='left',color=color, # Here
size=size, bbox=dict(boxstyle="round", fc="w",
ec="0.5", alpha=alpha))
fig,ax=plt.subplots(1)
ax.plot([0,1],[0,1])
lowerrighttext(ax,'One line is longer than\nthe other.')
plt.show()
|