Gets the style set for the specified cell.
$sh = new SpreadSheet($res, "1", $db_prefix);
$style = $sh->getStyle("B2");
The $style variable from the example above will have the value as in:
array (
"bold" => 1,
"italic" => 0,
"color" => '000000',
"bgcolor" =>'ffffff',
"align" => 'center',
"validator" => 'none',
"lock" => 0
);
See also: setStyle
Back to top