adjust_sentence_and_word_spacing property

ImportFormatOptions.adjust_sentence_and_word_spacing property

Gets or sets a boolean value that specifies whether to adjust sentence and word spacing automatically. The default value is False.

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

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

Examples

Shows how to adjust sentence and word spacing automatically.

src_doc = aw.Document()
dst_doc = aw.Document()
builder = aw.DocumentBuilder(src_doc)
builder.write('Dolor sit amet.')
builder = aw.DocumentBuilder(dst_doc)
builder.write('Lorem ipsum.')
options = aw.ImportFormatOptions()
options.adjust_sentence_and_word_spacing = True
builder.insert_document(src_doc=src_doc, import_format_mode=aw.ImportFormatMode.USE_DESTINATION_STYLES, import_format_options=options)
self.assertEqual('Lorem ipsum. Dolor sit amet.', dst_doc.first_section.body.first_paragraph.get_text().strip())

See Also