GxTitle.setIsUnderline

Syntax

setIsUnderline(value: Boolean);

Parameters

value. Value to be set. If the parameter is set to True, underline font style is set for title text.

Description

The setIsUnderline method sets underlining for title text.

Example

To execute the example, the HTML page must contain the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). To show the title, click the Title button on the Home tab. Set underline font style for title text:

// Get title
var title = expressBox.getDataView().getTitleView();
// Underline title text
title.setIsUnderline(True);

As a result underline font style is set for title text:

See also:

GxTitle