|
|
|
|
|
AutomaticErase (Property)
The AutomaticErase property is used to: - find out whether an edit control is in "Automatic erase" mode.
- modify the "Automatic erase" characteristic of an edit control.
Note If an Edit control is in "Borrado automático" mode, the value in the field is automatically selected when the field is entered. This characteristic can be configured in the "Details" tab of the description window of control.
AutoErase is boolean
AutoErase = EDT_Edit1.AutomaticErase
EDT_Edit1.AutomaticErase = False
SetFocus(EDT_Edit1)
EDT_Edit1.AutomaticErase = True
Sintaxis
Finding out the "Automatic erase" mode Ocultar los detalles
<Current mode> = <Control used>.AutomaticErase
<Current mode>: Boolean - True if "Automatic deletion" mode is enabled,
- False otherwise.
<Control used>: Control name Name of item handled: - Edit control,
- Text table column.
Modifying the "Automatic erase" mode Ocultar los detalles
<Control to use>.AutomaticErase = <New mode>
<Control to use>: Control name Name of item handled: - Edit control,
- Text table column.
<New mode>: Boolean - True to activate "Automatic deletion" mode,
- False otherwise.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|