NumberBox.Header Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 = numberBox.header;
numberBox.header = object;
Public Property Header As Object
Property Value
The content of the control's header. The default is null
.
Remarks
If you use text as the header and it exceeds the width of the NumberBox control, you can set the IsWrapEnabled property to true
to wrap the header text.