Pivot.TitleTemplate Property

Definition

Gets or sets the title template used for displaying the title above the headers area.

DataTemplate TitleTemplate();

void TitleTemplate(DataTemplate value);
public DataTemplate TitleTemplate { get; set; }
var dataTemplate = pivot.titleTemplate;
pivot.titleTemplate = dataTemplate;
Public Property TitleTemplate As DataTemplate
<Pivot TitleTemplate="resourceReferenceToDataTemplate"/>
- or -
<Pivot>
  <Pivot.TitleTemplate>
     <DataTemplate>
      dataTemplateDefinition
    </DataTemplate>
  </Pivot.TitleTemplate>
</Pivot>

Property Value

The template that specifies the visualization of the title object.

Applies to

See also