ItemsPresenter.Footer Property

Definition

Gets or sets the content for the items footer.

public:
 property Platform::Object ^ Footer { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Footer();

void Footer(IInspectable value);
public object Footer { get; set; }
var object = itemsPresenter.footer;
itemsPresenter.footer = object;
Public Property Footer As Object
<ItemsPresenter Footer="footerString"/>
- or -
<ItemsPresenter>
  <ItemsPresenter.Footer>footerObject</ItemsPresenter.Footer>
</ItemsPresenter>

Property Value

Object

Platform::Object

IInspectable

The content of the items footer. The default is null.

Remarks

You can set a data template for the Footer by using the FooterTemplate property.

Applies to

See also