Officedoc Configuration
The bean accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the bean, access to these internal properties is provided through the Config method.OfficeDoc Configuration Settings
NormalizePartName: Whether to normalize Part Names. Sometimes the Part Names retrieved
from a document will be of a format that is not directly usable in the PartName
property when retrieving the part. For example:
/ppt/slides/../media/image1.jpeg When this option is set to True the component will automatically normalize
these Part Names so that they can be directly used in the PartName property
for retrieving the part. For exampe, the above would become:
/ppt/media/image1.jpeg The default is false. | |
RelationshipIsExternal[x]: Whether the relationship part is internal or external. Some relationships in an Office document may be external items, such as URLs and files on disk. These relationships are not directly accessible via ExtractPart. This configuration option will return "True" if the relationship at index "x" of Relationships is an external part. Otherwise it will return "False" |
Base Configuration Settings
GUIAvailable: Tells the bean whether or not a message loop is available for processing events. In a GUI-based application, long-running blocking operations may cause the application to stop responding to input until the operation returns. The bean will attempt to discover whether or not the application has a message loop and, if one is discovered, it will process events in that message loop during any such blocking operation. In some non-GUI applications an invalid message loop may be discovered that will result in errant behavior. In these cases, setting GuiAvailable to false will ensure that the bean does not attempt to process external events. | |
UseDaemonThreads: Whether threads created by the bean are daemon threads. If set to True, when the bean creates a thread the thread's Daemon property will be explicitly set to True. By default this setting is False and the bean will not set the Daemon property on the created thread. |