PHP 8.4.0 RC4 available for testing

Entrée de Contrôle

(UI 0.9.9)

Introduction

Une entrée (Entry) est un contrôle de saisie de texte, adapté pour entrer du texte brut, des mots de passe, ou des termes de recherche.

Synopsis de la classe

class UI\Controls\Entry extends UI\Control {
/* Constantes */
const int Normal;
const int Password;
const int Search;
/* Constructor */
public __construct(int $type = UI\Controls\Entry::Normal)
/* Méthodes */
public getText(): string
public isReadOnly(): bool
protected onChange()
public setReadOnly(bool $readOnly)
public setText(string $text)
/* Méthodes héritées */
}

Constantes pré-définies

UI\Controls\Entry::Normal

Une entrée normale simple

UI\Controls\Entry::Password

Une entrée de mot de passe

UI\Controls\Entry::Search

Une entrée de recherche

Sommaire

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top