aspnet-devexpress-dot-web-dot-aspxdataviewbase-0bcd151d.md
Gets or sets a template used for displaying the content of the empty data area.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(null)]
public virtual ITemplate EmptyDataTemplate { get; set; }
<DefaultValue(Nothing)>
Public Overridable Property EmptyDataTemplate As ITemplate
| Type | Default | Description |
|---|---|---|
| ITemplate | null |
An object that implements the ITemplate interface, and contains the template to represent the empty data area.
|
Use the EmptyDataTemplate property to define the content for the empty data area of the control.
Note
Once a template defined via the EmptyDataTemplate property is created within a control, it is instantiated within a container object of the DataViewTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.
See Also