We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5ea52 commit 3ad1300Copy full SHA for 3ad1300
1 file changed
python/README.md
@@ -17,12 +17,12 @@ def index():
17
18
form = WebForms()
19
20
- form.SetFontSize(InputPlace.Tag('form'), font_size)
21
- form.SetBackgroundColor(InputPlace.Tag('form'), background_color)
22
- form.SetDisabled(InputPlace.Name('btn_SetBodyValue'), True)
+ form.set_font_size(InputPlace.tag('form'), font_size)
+ form.set_background_color(InputPlace.tag('form'), background_color)
+ form.set_disabled(InputPlace.name('btn_SetBodyValue'), True)
23
24
- form.AddTag(InputPlace.Tag('form'), 'h3')
25
- form.SetText(InputPlace.Tag('h3'), f"Welcome {name}!")
+ form.add_tag(InputPlace.tag('form'), 'h3')
+ form.set_text(InputPlace.tag('h3'), f"Welcome {name}!")
26
27
return form.response()
28
0 commit comments