Version

Footer Property

Gets or sets the content of the footer.
Syntax
'Declaration
 
Public Property Footer As Object
public object Footer {get; set;}
Remarks

Note: the Infragistics.Windows.Reporting.ReportSection uses its Infragistics.Windows.Reporting.ReportSection.PageFooter value to set this property. If that is null set it will use the value of the Report's Infragistics.Windows.Reporting.ReportBase.PageFooter property.

Example
This example shows how to create ReportPagePresenter style with costom Footer property.

<Style x:Key="PagePresenterStyle" TargetType="{x:Type igRep:ReportPagePresenter}">
    
<Setter Property="Footer">
        
<Setter.Value>
            Custom Footer
        
</Setter.Value>
    
</Setter>
</Style>
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also