Data ListFooter Template Property
The template control type to use for the footer
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public Type? FooterTemplate { get; set; }VB
Public Property FooterTemplate As Type
Get
SetC++
public:
property Type^ FooterTemplate {
Type^ get ();
void set (Type^ value);
}F#
member FooterTemplate : Type with get, setProperty Value
TypeRemarks
The footer template is bound to the data source as a whole rather than an individual row.
If not set, a footer section will not be shown.
Example
C#
// AddressFooter is a user control derived from TemplateControl
dataList.FooterTemplate = typeof(AddressFooter);VB
' AddressFooter is a user control derived from TemplateControl
dataList.FooterTemplate = GetType(AddressFooter)C++
No code example is currently available or this language may not be supported.F#
No code example is currently available or this language may not be supported.Exceptions
| ArgumentException | This is thrown if the specified type is not derived from TemplateControl. |