H A D | msilib.py | 637 def control(self, name, type, x, y, w, h, attr, prop, text, next, help):
member in class:Dialog 643 return self.control(name, "Text", x, y, w, h, attr, None,
647 return self.control(name, "Bitmap", x, y, w, h, 1, None, text, None, None)
650 return self.control(name, "Line", x, y, w, h, 1, None, None, None, None)
653 return self.control(name, "PushButton", x, y, w, h, attr, None, text, next, None)
662 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
|