AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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.
Remark: If an Edit control is in "Borrado automático" mode, the value in the field is automatically selected when the Edit control is entered.. This characteristic can be configured in the "Details" tab of the description window of control.
Ejemplo
// Désactive temporairement l'effacement automatique 
// pour ne pas tout sélectionner lors de l'appel à la fonction DonneFocus

// Mémorise l'effacement automatique actuel
EffacementAuto is boolean 
EffacementAuto = SAI_Saisie1.EffacementAutomatique
SAI_Saisie1.EffacementAutomatique = False

// Redonne le focus au champ de saisie
SetFocus(SAI_Saisie1) 

// Restaure l'effacement automatique
SAI_Saisie1.EffacementAutomatique = True
Sintaxis

Finding out the "Automatic erase" mode Ocultar los detalles

<Current mode> = <Control used>.AutomaticErase
<Current mode>: Boolean
  • True if the "Automatic erase" mode is enabled,
  • False otherwise.
<Control used>: Control name
Name of element used:
  • 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 element used:
  • Edit control,
  • Text table column.
<New mode>: Boolean
  • True to enable the "Automatic erase" mode,
  • False otherwise.
Versión mínima requerida
  • Versión 12
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

Señalar un error o enviar una sugerencia | Ayuda local