keep_font_stream_open property

FontSavingArgs.keep_font_stream_open property

Specifies whether Aspose.Words should keep the stream open or close it after saving a font.

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

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

Remarks

Default is False and Aspose.Words will close the stream you provided in the FontSavingArgs.font_stream property after writing a font into it. Specify True to keep the stream open.

See Also