class msilib.Dialog(db, name, x, y, w, h, attr, title, first, default, cancel)
Return a new Dialog object. An entry in the Dialog table is made, with the specified coordinates, dialog attributes, title, name of the first, default, and cancel controls.
-
control(name, type, x, y, width, height, attributes, property, text, control_next, help) -
Return a new
Controlobject. An entry in theControltable is made with the specified parameters.This is a generic method; for specific types, specialized methods are provided.
-
text(name, x, y, width, height, attributes, text) -
Add and return a
Textcontrol.
-
bitmap(name, x, y, width, height, text) -
Add and return a
Bitmapcontrol.
-
line(name, x, y, width, height) -
Add and return a
Linecontrol.
-
pushbutton(name, x, y, width, height, attributes, text, next_control) -
Add and return a
PushButtoncontrol.
-
radiogroup(name, x, y, width, height, attributes, property, text, next_control) -
Add and return a
RadioButtonGroupcontrol.
-
checkbox(name, x, y, width, height, attributes, property, text, next_control) -
Add and return a
CheckBoxcontrol.
Please login to continue.