RichEditBox.Header Property

Definition

Gets or sets the content for the control's header.

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

void Header(IInspectable value);
public object Header { get; set; }
var object = richEditBox.header;
richEditBox.header = object;
Public Property Header As Object
<RichEditBox Header="headerString"/>
- or -
<RichEditBox>
  <RichEditBox.Header>headerObject</RichEditBox.Header>
</RichEditBox>

Property Value

Object

Platform::Object

IInspectable

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

Remarks

You can set a data template for the Header by using the HeaderTemplate property.

Applies to

See also