Characters#

object is a Range or Shape object.

class Characters(impl)#

The characters object can be accessed as an attribute of the range or shape object.

  • mysheet['A1'].characters

  • mysheet.shapes[0].characters

备注

On macOS, characters are currently not supported due to bugs/lack of support in AppleScript.

在 0.23.0 版本加入.

property api#

返回正在使用的引擎的原生对象( pywin32appscript 对象)。

在 0.23.0 版本加入.

property font#

Returns or sets the text property of a characters object.

>>> sheet['A1'].characters[1:3].font.bold = True
>>> sheet['A1'].characters[1:3].font.bold
True

在 0.23.0 版本加入.

property text#

Returns or sets the text property of a characters object.

>>> sheet['A1'].value = 'Python'
>>> sheet['A1'].characters[:3].text
Pyt

在 0.23.0 版本加入.