summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/test/test_setcontroldata.py
blob: c46e6134d1c1a524f1ab00d26c102e52afb4f352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import W
from Controls import *

w = W.Window((200,200), "Test")

w.c = W.Button((5,5,100,50), "Test")

w.open()

print repr(w.c._control.GetControlData(0, 'dflt'))

str = '\001'
w.c._control.SetControlData(0, 'dflt', str)