WbkPropertyBarView.getTitlePanel

Syntax

getTitlePanel(titleView: PP.Exp.Ui.EaxTitleView);

Parameters

titleView. Component for showing title.

Description

The getTitlePanel method returns the Title panel of the Format tab.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and all the workbook views must be displayed. Show the title wizard:

// Get workbook properties panel
var propertyBarView = workbookBox.getPropertyBarView();
// Hide all wizards
propertyBarView.hideAllMasters();	
// Title setup panel
var titleMaster = propertyBarView.getTitlePanel(workbookBox.getDataView().getTitleView());
// Display title wizard
titleMaster.show();

After executing the example the Title panel is displayed:

WbkPropertyBarView