|
|
|
|
|
- Spelling checker used in edit controls and in the columns of a Table control
- Spelling checker used in the Word Processing controls
- Spelling checker used
CheckSpell (Property) In french: VérifieOrthographe
The CheckSpell property is used to enable or disable the automatic spelling checker. A red line automatically appears under words that are not found in the dictionary: - in edit controls.
- in Table control columns.
- in Word Processing controls.
Remark: This property is equivalent to the option "Check the spelling" found: - in the "Details" tab of the description window of edit controls,
- in the "Details" tab of the description window of the Table control columns.
// Enable the spell check in an edit control EDT_Text.CheckSpell = True
Syntax
Determining if the spelling checker is enabled Hide the details
<Result> = <Control used>.CheckSpell
<Result>: Boolean - True if the spell check is enabled,
- False otherwise.
<Control used>: Control name Name of the control to be used: - edit control,
- column of a Table control,
- Word Processing control.
Enabling or disabling the spell check Hide the details
<Control used>.CheckSpell = <Enable/Disable>
<Control used>: Control name Name of the control to be used: - edit control,
- column of a Table control,
- Word Processing control.
<Enable/Disable>: Boolean - True if the spell check must be enabled,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|