punctuation_kerning property

Document.punctuation_kerning property

Specifies whether kerning applies to both Latin text and punctuation.

@property
def punctuation_kerning(self) -> bool:
    ...

@punctuation_kerning.setter
def punctuation_kerning(self, value: bool):
    ...

Examples

Shows how to work with kerning applies to both Latin text and punctuation.

doc = aw.Document(file_name=MY_DIR + 'Document.docx')
self.assertTrue(doc.punctuation_kerning)

See Also