ContainerControl.ProcessTabKey(Boolean) Método
Definición
Selecciona el siguiente control disponible y lo convierte en el control activo.Selects the next available control and makes it the active control.
protected:
virtual bool ProcessTabKey(bool forward);
protected virtual bool ProcessTabKey (bool forward);
abstract member ProcessTabKey : bool -> bool
override this.ProcessTabKey : bool -> bool
Protected Overridable Function ProcessTabKey (forward As Boolean) As Boolean
Parámetros
- forward
- Boolean
true
para avanzar por los controles de ContainerControl; en caso contrario, false
.true
to cycle forward through the controls in the ContainerControl; otherwise, false
.
Devoluciones
true
si se selecciona un control; en caso contrario, false
.true
if a control is selected; otherwise, false
.
Comentarios
No se puede seleccionar TabStop un control con false
su propiedad establecida en, por lo que se seleccionará el siguiente control disponible.A control with its TabStop property set to false
cannot be selected, so the next available control will be selected.