"cellFontRC"

Sets the font for a table cell.

Synopsis

setValue(string shape, "cellFontRC", int row, string column, string font);

getValue(string shape, "cellFontRC", int row, string column, string &font);

shape.cellFontRC(int row, string column, string font);

Parameters

Parameter Description
shape Name of the object
row The row
column The column
font The font type, for example, "Arial Narrow,-1,11,5,50,0,0,0,0,0". To select the font type, use the function fontSelector().

Description

Sets the font for a table cell.

Example

In the following example, a text will be written into a table (cell) and the font for a cell will be set.

 main()
{
  TABLE1.appendLine("Surname", "Davis");
  TABLE1.cellFontRC(1,"Surname"," Arial Narrow,-1,11,5,50,0,0,0,0,0");
}

Assignment

Trend