脚注 尾注
Contents
[
Hide
]
Report Builder 无法为文本框设置脚注或尾注。使用 Aspose.Pdf for Reporting Services,您可以通过添加自定义属性轻松实现。
脚注 自定义属性 名称: Footnote 自定义属性值: 值应该是一个字符串
尾注 自定义属性 名称: Endnote 自定义属性值: 值应该是一个字符串
在以下示例中,报告包含一个值为 ‘AsposePdf4RS’ 的文本框,我们希望以脚注的形式添加补充说明,文本为 “An optional PDF renderer for SSRS from Aspose Pty. Ltd."。
示例
<Textbox Name="Textbox1">
...
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
......
<Value>AsposePdf4RS</Value>
<Style>
......
</Style>
<CustomProperties>
<CustomProperty>
<Name>Footnote</Name>
<Value>An optional PDF renderer for SSRS from Aspose Pty. Ltd.</Value>
</CustomProperty>
</CustomProperties>
</TextRun>
</TextRuns>
</Paragraph>
</Paragraphs>
</Textbox>