text_options属性
text_options属性
代表形状的文本选项。
例子
from aspose.pydrawing import Color
opt = shape.text_options
opt.color = Color.blue
opt.size = 8
定义:
@property
def text_options(self):
...
@text_options.setter
def text_options(self, value):
...
代表形状的文本选项。
from aspose.pydrawing import Color
opt = shape.text_options
opt.color = Color.blue
opt.size = 8
@property
def text_options(self):
...
@text_options.setter
def text_options(self, value):
...