RPA.Word.Application
Close the active document and app (if open).
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
save_changes | bool | False | Enable changes saving on quit. (False by default) |
param save_changes: | |
---|---|
Enable changes saving on quit. (False by default) |
Create new document for Word application
Export active document into PDF file.
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
filename | str | null | PDF to export WORD into |
param filename: | PDF to export WORD into |
---|
Get all texts from active document
return: | texts |
---|
Open the application.
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
visible | bool | False | Show the window on opening. (False by default) |
display_alerts | bool | False | Display alert popups. (False by default) |
param visible: | Show the window on opening. (False by default) |
---|---|
param display_alerts: | |
Display alert popups. (False by default) |
Open Word document with filename.
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
filename | str | null | Word document path |
read_only | bool | True |
param filename: | Word document path |
---|
Quit the application.
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
save_changes | bool | False | Enable to save changes on quit. (False by default) |
param save_changes: | |
---|---|
Enable to save changes on quit. (False by default) |
Replace text in active document
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
find | str | null | text to replace |
replace | str | null | new text |
param find: | text to replace |
---|---|
param replace: | new text |
Save active document
Save document with filename and optionally with given fileformat
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
filename | str | null | where to save document |
fileformat | str, None | None | see @FILEFORMATS dictionary for possible format, defaults to None |
param filename: | where to save document |
---|---|
param fileformat: | |
see @FILEFORMATS dictionary for possible format, defaults to None |
Set header for the active document
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
text | str | null | header text to set |
param text: | header text to set |
---|
Writes given text at the end of the document
Arguments
Argument | Type | Default value | Description |
---|---|---|---|
text | str | null | string to write |
newline | bool | True | write text to newline if True, default to True |
param text: | string to write |
---|---|
param newline: | write text to newline if True, default to True |