Footnote Endnote
Contents
[
Hide
]
Report Builder cannot set the footnote or endnote for textboxes. With Aspose.Pdf for Reporting Services, you can do that easily by adding custom properties.
Footnote Custom Property Name: Footnote Custom Property Value: the value should be a string
Endnote Custom Property Name: Endnote Custom Property Value: the value should be a string
In the following example, the report contains a Textbox with the value ‘AsposePdf4RS’, and we want to add a supplementary description in the form of a footnote with text “An optional PDF renderer for SSRS from Aspose Pty. Ltd.”.
Example
<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>