com.lowagie.text.List.getIndentationRight()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(156)

本文整理了Java中com.lowagie.text.List.getIndentationRight()方法的一些代码示例,展示了List.getIndentationRight()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。List.getIndentationRight()方法的具体详情如下:
包路径:com.lowagie.text.List
类名称:List
方法名:getIndentationRight

List.getIndentationRight介绍

[英]Gets the indentation of this paragraph on the right side.
[中]获取此段落右侧的缩进。

代码示例

代码示例来源:origin: es.gob.afirma/afirma-crypto-pdf-itext

compositeColumn.setExtraParagraphSpace(item.getExtraParagraphSpace());
compositeColumn.setFollowingIndent(compositeColumn.getIndent());
compositeColumn.setRightIndent(item.getIndentationRight() + list.getIndentationRight());
compositeColumn.setLeading(item.getLeading(), item.getMultipliedLeading());
compositeColumn.setRunDirection(runDirection);

代码示例来源:origin: com.github.librepdf/openpdf

compositeColumn.setExtraParagraphSpace(item.getExtraParagraphSpace());
compositeColumn.setFollowingIndent(compositeColumn.getIndent());
compositeColumn.setRightIndent(item.getIndentationRight() + list.getIndentationRight());
compositeColumn.setLeading(item.getLeading(), item.getMultipliedLeading());
compositeColumn.setRunDirection(runDirection);

代码示例来源:origin: fr.opensagres.xdocreport.itext-gae/itext-gae

compositeColumn.setExtraParagraphSpace(item.getExtraParagraphSpace());
compositeColumn.setFollowingIndent(compositeColumn.getIndent());
compositeColumn.setRightIndent(item.getIndentationRight() + list.getIndentationRight());
compositeColumn.setLeading(item.getLeading(), item.getMultipliedLeading());
compositeColumn.setRunDirection(runDirection);

代码示例来源:origin: com.github.bengolder/pdf-rtf

ll.setLeftIndent(0);
ll.setRightIndent((int) (list.getIndentationRight() * RtfElement.TWIPS_FACTOR));
ll.setSymbolIndent((int) ((list.getSymbolIndent() + list.getIndentationLeft()) * RtfElement.TWIPS_FACTOR));
ll.correctIndentation();

代码示例来源:origin: org.jboss.itext/itext-rtf

ll.setLeftIndent(0);
ll.setRightIndent((int) (list.getIndentationRight() * RtfElement.TWIPS_FACTOR));
ll.setSymbolIndent((int) ((list.getSymbolIndent() + list.getIndentationLeft()) * RtfElement.TWIPS_FACTOR));
ll.correctIndentation();

代码示例来源:origin: es.gob.afirma/afirma-crypto-pdf-itext

indentation.indentRight += list.getIndentationRight();
indentation.indentRight -= list.getIndentationRight();
carriageReturn();
break;

代码示例来源:origin: fr.opensagres.xdocreport.itext-gae/itext-gae

indentation.indentRight += list.getIndentationRight();
indentation.indentRight -= list.getIndentationRight();
carriageReturn();
break;

代码示例来源:origin: com.github.librepdf/openpdf

indentation.indentRight += list.getIndentationRight();
indentation.indentRight -= list.getIndentationRight();
carriageReturn();
break;

相关文章