我正在尝试将文本的背景颜色设置为颜色或 100% 透明(以最简单的方式),但我都在努力实现。
我已经根据其他一些元素尝试了“bgColor”,但没有运气:(
$textbox = $section->addTextBox(
array(
'marginTop' => -100,
'marginLeft' => -100,
'posHorizontal' => 'absolute',
'posVertical' => 'absolute',
'align' => 'left',
'positioning' => 'relative',
'width' => 200,
'height' => 40,
'borderColor' => '#eeeeee',
'borderSize' => 0,
'bgColor' => 'black',
)
);