Pivot.RightHeader Property

Definition

Gets or sets the content for the header on the control's right side.

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

void RightHeader(IInspectable value);
public object RightHeader { get; set; }
var object = pivot.rightHeader;
pivot.rightHeader = object;
Public Property RightHeader As Object
<Pivot RightHeader="headerString"/>
- or -
<Pivot>
  <Pivot.RightHeader>headerObject</Pivot.RightHeader>
</Pivot>

Property Value

Object

Platform::Object

IInspectable

The content of the header on the control's right side. The default is null.

Remarks

You can set a data template for the RightHeader value by using the RightHeaderTemplate property.

Applies to

See also