- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文本数据表,我想将某些数据缩进几个空格,但是我尝试的所有操作似乎都会导致我的字符串被自动修剪,并且前面的空格被删除。现在的 PDF 看起来像这样:
http://i.imgur.com/KBK6jWS.png
例如,我想将“LiabilityOne”和“LiabilityTwo”缩进一点。我试过在呈现字符串时在字符串中添加空格。在渲染之前添加空格,使用 '\x020' 希望能坚持下去,并使用 PadLeft(String.Length + 2, ' '),一切都没有运气。
当然,有一种方法可以为这些字符串添加一些前面的空格。我该怎么做?
编辑:
上下文——这是为右侧表格的后半部分生成内容的方法。其他一切都非常相似。
private void DrawStaticLiabilities()
{
_PdfVerticalOffset = 85 + (_PdfRowsFSRight * _PdfRowHeight);
Document tDoc = new Document();
MigraDoc.DocumentObjectModel.Style style = tDoc.Styles["Normal"];
style.Font.Name = tPdfFont;
style.Font.Size = 10;
Section tSec = tDoc.AddSection();
MigraDoc.DocumentObjectModel.Tables.Table table2 = new MigraDoc.DocumentObjectModel.Tables.Table();
table2 = tSec.AddTable();
table2.Borders.Width = 0.2;
table2.Rows.LeftIndent = 0;
Column columnData2 = table2.AddColumn("295pt");
Column columnValue2 = table2.AddColumn("70pt");
columnValue2.Borders.Right.Visible = false;
Row rowAb = table2.AddRow();
rowAb.Borders.Top.Visible = true;
rowAb.Borders.Bottom.Visible = false;
rowAb.Cells[0].AddParagraph(MP.FormFinancialStatement.StaticLiabilites.TopLine);
rowAb.Cells[1].AddParagraph("");
Row row1b = table2.AddRow();
row1b.Borders.Bottom.Visible = false;
row1b.Cells[0].AddParagraph(" Intermediate Liabilities (" + MP.FormFinancialStatement.StaticLiabilites.IntLiabilitiesText + ")");
row1b.Cells[1].Format.Alignment = ParagraphAlignment.Right;
row1b.Cells[1].AddParagraph(MP.FormFinancialStatement.StaticLiabilites.IntLiabilitiesValue);
Row row2b = table2.AddRow();
row2b.Borders.Bottom.Visible = false;
row2b.Cells[0].AddParagraph(" Long Term Liabilities (" + MP.FormFinancialStatement.StaticLiabilites.LongLiabilitiesText + ")");
row2b.Cells[1].Format.Alignment = ParagraphAlignment.Right;
row2b.Cells[1].AddParagraph(MP.FormFinancialStatement.StaticLiabilites.LongLiabilitiesValue);
Row row3b = table2.AddRow();
row3b.Borders.Bottom.Visible = false;
row3b.Cells[0].AddParagraph(" Accrued Interest On: (" + MP.FormFinancialStatement.StaticLiabilites.AccruedInterestText + ")");
row3b.Cells[1].AddParagraph("");
Row row4b = table2.AddRow();
row4b.Borders.Bottom.Visible = false;
row4b.Cells[0].AddParagraph(" Accounts and Notes Payable(" + MP.FormFinancialStatement.StaticLiabilites.AccountsPayableText + ")");
row4b.Cells[1].Format.Alignment = ParagraphAlignment.Right;
row4b.Cells[1].AddParagraph(MP.FormFinancialStatement.StaticLiabilites.AccountsPayableValue);
Row row5b = table2.AddRow();
row5b.Borders.Bottom.Visible = false;
row5b.Cells[0].AddParagraph(" Intermediate Liabilities (" + MP.FormFinancialStatement.StaticLiabilites.OtherIntLiabilitiesText + ")");
row5b.Cells[1].Format.Alignment = ParagraphAlignment.Right;
row5b.Cells[1].AddParagraph(MP.FormFinancialStatement.StaticLiabilites.OtherIntLiabilitiesValue);
Row row6b = table2.AddRow();
row6b.Borders.Bottom.Visible = false;
row6b.Cells[0].AddParagraph(" Long Term Liabilities (" + MP.FormFinancialStatement.StaticLiabilites.OtherLongLiabilitiesText + ")");
row6b.Cells[1].Format.Alignment = ParagraphAlignment.Right;
row6b.Cells[1].AddParagraph(MP.FormFinancialStatement.StaticLiabilites.OtherLongLiabilitiesValue);
MigraDoc.Rendering.DocumentRenderer docRenderer = new DocumentRenderer(tDoc);
docRenderer.PrepareDocument();
docRenderer.RenderObject(gfx, 405, _PdfVerticalOffset, "365pt", table2);
_PdfRowsFSRight += 8;
}
最佳答案
要使用 MigraDoc 获得多个相邻空格,只需使用不间断空格(按 Alt+<255>)。
也可以看看:
http://forum.pdfsharp.net/viewtopic.php?p=1304#p1304
关于c# - MigraDoc:如何将前面的空格添加到字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19300219/
有没有办法不在每个页面上重复 Migradoc header ? 在我的程序中,我将图像添加到文档的标题中,如下所示: Section section = document.AddSectio
如何减少 MigraDoc 文档的上边距? 我在文档的右上角添加了一个图像,但是文档顶部和图像之间的空间太大。 这是我设置图像的方法: Section section = document.AddSe
我可以使用 MigraDoc 轻松地将图像添加到 PDF 文件的某个部分。但是,图像被页面宽度切成两半。 有没有办法强制图片调整大小,使其完全适合一页?还是必须手动完成? 如果必须手动完成,有人知道
我正在使用 MigraDoc 创建一个报告,该报告可以有 4 个表,2 行和 2 个表。 我尝试了许多不同的方法来实现这一点。 1- 我尝试在 table 上创建一个 leftIndent。 tabl
我正在尝试将图像放置为每个页面的页脚,我可以使用以下方法将页脚移近页面底部: doc.DefaultPageSetup.FooterDistance = "0cm" 但是我似乎无法找到一种方法来允许与
我想要一种在 MigraDoc 中设置相对列宽的方法,我找到了 this post就此主题而言。问题是,它对我不起作用。我从那篇文章中复制了确切的代码: Section section = docum
如何在渲染之前获取页数?我需要在我的文档中将数字写成单词。 最佳答案 对于页码作为数字: 您不必获取编号,您可以在文档中添加占位符(称为字段),并且 MigraDoc 将在呈现文档时自动插入页码。 见
我正在使用 MigraDoc 创建 PDF。根据我的要求,我必须根据页面\部分的内容添加不同的标题。我可以通过添加新部分并为每个部分定义新标题来实现它。到这里为止,一切正常。 在页脚中,我使用“Add
我有一个文本数据表,我想将某些数据缩进几个空格,但是我尝试的所有操作似乎都会导致我的字符串被自动修剪,并且前面的空格被删除。现在的 PDF 看起来像这样: http://i.imgur.com/KBK
我的任务是重构一个旧的 MigraDoc 项目,该项目由不再在我公司工作的开发人员编写,并且在使用以下代码时遇到问题.. var Split = new String[1]; Split[0] = "
我想知道是否有办法避免某些段落之间换行。例如: Paragraph PjourneyTitle = sec.AddParagraph(journeyTitle, "Heading2"); Paragr
我想在我的所有页面上添加水印并将其居中。这对于至少仅通过一组纵向页面“吸引眼球”来说是非常简单的,但在本文档中同时包含纵向和横向页面。 我的研究表明可以用这些元素来完成: myImage.Relati
有没有办法向 migradoc 表格单元格添加真正的填充?他们目前拥有的选项(LeftPadding 和 RightPadding)实际上像边距一样工作,而不像填充。如果您使用它,它还会推送背景颜色,
我一直在使用 MigraDoc 生成 PDF,除了添加图像外,我的所有布局都运行良好。对于程序的一部分,我们正在生成这些 PDF,因为我们使用的程序只将它们的信息保存为 XML,并且可以从那里将 XM
我需要找到一种方法来用 .png 图片填充整个封面,并在页面底部放置一些文本,而图片不会出现在该位置。 现在我通过使用它来拉伸(stretch): document.DefaultPageSetup.
我想创建一个 PDF 文件,该文件应包含一个表格,并在该表格下包含三个图像;图像应该有水平布局(它们应该在同一行)。如何对齐 MigraDoc 中的三个图像?如果我以这种方式添加图像 docum
我想要实现的是在页面上两次显示相同的内容,用虚线分隔,并使用填充,这样一份副本位于上半部分,第二份副本位于下半部分。类似于 firstSection.SpaceAfter = (height of p
我想在 MigraDoc 中使用不同的字体,但我很难坚持下去。目前,我正在使用以下代码: 我将其作为类范围的变量: String tPdfFont = "MonospaceTyperwrite
如何在 Migradoc 中添加一条简单的水平线,以便将线上方的内容与线下方的内容分开? Paragraph 1 Paragraph 2 Paragraph 3 ETC 最佳答案 您可以为段落或表格添
数据库中有一个 HEX 颜色代码字符串 ("#ADD8E6"),我想用它来更改 MigraDoc< 的背景颜色 单元格。我找到了 Color.Parse() 函数,但它并没有改变我的单元格的颜色。我必
我是一名优秀的程序员,十分优秀!