(self, label, **args)
| 1887 | self._closeTag('button') |
| 1888 | |
| 1889 | def button_(self, label, **args): |
| 1890 | self.button(**args) |
| 1891 | self.addHtml(label) |
| 1892 | self._button() |
| 1893 | |
| 1894 | def textarea(self, **args): |
| 1895 | """Defines a text area (a multi-line text input control). A user can |