没有找到单元格设置内容颜色功能?
majingsign opened this issue · 1 comments
majingsign commented
lait233 commented
这个setRow是针对整行设置样式的,如果你需要单个单元格设置样式,请使用 insertText
$titleStyle = ( new Format( $resource ) )->align( Format::FORMAT_ALIGN_LEFT )->background( Format::COLOR_RED )->toResource(); // 左对齐+红色字体样式资源
$fileObject = $fileObject->insertText( 2, 1042, '我的字体颜色是红色', null, $titleStyle );
```php