GxTitle.setIsItalic

Syntax

setIsItalic(value: Boolean);

Parameters

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

Description

The setIsItalic method sets italic style 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 italic font style for title text:

// Get title
var title = expressBox.getDataView().getTitleView();
// Set italic font style for title text
title.setIsItalic(True);

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

See also:

GxTitle