TabSheetSettings.SearchResultStyle

Syntax

SearchResultStyle: Object;

Description

The SearchResultStyle property determines cell style from search results.

Comments

Use the setSearchResultStyle(style) method to set the property value, and the getSearchResultStyle method to get the property value. Property value cannot be set from JSON.

Parameters:

Cell style object has the following structure:

{
Fill: {
  "@C": "red"  // cell fill
},
Font: {
  "@F": "Arial",  //font style
  "@S": 20,  //font size
  "@C": "white",  //font color
  "@I": true,  //italic
  "@SO": true,  //strikethrough
  "@B": true,  //bold
  "@U": true  //underlined
}};

Example

The example of use is given on the TabSheet.addCellToSearchResult method page.

See also:

TabSheetSettings