|
|
|
|
|
- Overview of the Word Processing control
- Creating a Word Processing control
- Characteristics of Word Processing control
The Word Processing control
Overview of the Word Processing control The Word processing control is an advanced control that allows the end user to create and edit documents in docx format directly on a WINDEV application. The benefits are immediate: time-saving, consistent interface, no additional software to install/drive/manage.. This control allows you to: - Open, create, modify and save "docx" files,
- Convert docx files to PDF or to HTML to send emails,
- Manage images and tables,
- Manage text areas,
- Save documents in HFSQL databases,
- Use a spelling checker,
- Print documents, etc.
This control features a menu that includes the most common actions. This menu can be displayed: Several keyboard shortcuts are also available:
| | | | Shortcut | Effect | Shortcut | Effect |
---|
Ctrl + A | Selects the entire text. | Ctrl + C | Copies the selection to the clipboard. | Ctrl + F | Starts the search. | Ctrl + B | Makes the selection bold | Ctrl + H | Starts find/replace | Ctrl + I | Italicizes the selection | Ctrl + S | Saves the document | Ctrl + U | Switches the selection to underlined | Ctrl + V | Pastes the content of the clipboard. | Ctrl + X | Cust the selection and places it in the clipboard. | Ctrl + Y | Redoes the last action. | Ctrl + Z | Undoes the last action. | Ctrl + mouse wheel | Changes the zoom. | Ctrl + 0 | Sets zoom at 100% | Ctrl + home | Moves to the beginning of the document. | Ctrl + End | Moves to the end of the document. | Page Up | Displays the previous page. | Page Down | Displays the next page. |
Creating a Word Processing control To create a Word Processing control: - On the "Creation" tab, in the "Graphic controls" group, expand "Office" and click "Word processing".
- Click at the desired location to create the control.
Note: The dimensions of the field created are optimized to occupy the space available at the position indicated.. If the field size doesn't suit you, use the Ctrl + Z key combination: the field will return to its default size. To view the characteristics of the control, select "Description" in the context menu. Characteristics of Word Processing control The "General" tab in the description window of the Word Processing control proposes the following options: - Initial document: Indicates the initial document displayed in the Word Processing control.
- Edit options:
- Toolbar management: you can choose whether or not to display a Word Processing control toolbar.. The available options are as follows:
- None: The field will not display any toolbars..
- Ribbon: Field manipulation options are grouped together in a ribbon..
- Mini toolbar: Field manipulation options will be grouped together in a mini toolbar..
- Ribbon source FI / Mini toolbar source FI: In the case of a ribbon or mini toolbar, this parameter specifies whether the display should be customized or not.. The available options are as follows:
- "None": the default ribbon (or mini toolbar) will be used..
- "Predefined window": the default ribbon (or mini toolbar) can be customized..
To do so, select "Customize". In this case, an internal window is automatically added to your project, in the WDAAF internal component. This internal window can be modified as required. This window contains all the code required to manage the Word Processing control. It is recommended to check for UI errors and make sure the window works properly after any change is made. If you use the ribbon , the "IW_WINDEVAAF_WPRibbon" window is added. If you use the mini toolbar, the "IW_WINDEVAAF_WPBar" window is added. - Internal project window: If your project contains internal windows, you can use one of these windows to propose a specific ribbon or mini toolbar..
Any internal window of your project can be used to create this bar.
You can also apply the project skin template. - Allow change of document (Open, New, etc.): adapts ribbon to allow user to manipulate external documents. This option is used to display the "New", "Open" and "Save" buttons of ribbon. If this option is checked, the document opening and backup must be performed by the application.
Note: This option is not taken into account if the ribbon is fully customized (with an internal application window, for example).. - Limit the edit to simplify the HTML export: adapts ribbon and document display to show only options taken into account by HTML export. If this option is checked:
- the following options are not available:
- Management of headers and footers,
- Management of page layout,
- Management of page breaks.
- the document is forced to be displayed in "Display for the Web" mode.
- Other settings:
- Enable [Check spelling] by default: Indicate whether the spelling checker should be activated.. For more details, see Check spelling based on Hunspell dictionaries.
- Automatically detect and format links: Enables automatic detection of links (http type) present in the document displayed in the field. In this case, links are detected during input, after pressing Space, Tab or Enter. If these links are valid, they can be opened with Ctrl + Click.
Note: This option is checked by default.
Related Examples:
|
Unit examples (WINDEV): The Word Processing control
[ + ] This example explains how to handle a Word Processing control by programming. You have the ability to add text and to format it by programming.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|