1
2
3
4
5
6
7
8
9
10
11
12
13from pyfbsdk import *
14from pyfbsdk_additions import *
15
16
17
18t = FBCreateUniqueTool("Receiver")
19t.StartSizeX = 400
20t.StartSizeY = 400
21x = FBAddRegionParam(0,FBAttachType.kFBAttachLeft,"")
22y = FBAddRegionParam(0,FBAttachType.kFBAttachTop,"")
23w = FBAddRegionParam(0,FBAttachType.kFBAttachRight,"")
24h = FBAddRegionParam(0,FBAttachType.kFBAttachBottom,"")
25t.AddRegion("main","main", x, y, w, h)
26
28t.receivedList.Style = FBListStyle.kFBVerticalList
29t.SetControl("main",t.receivedList)
30
31ShowTool(t)
List of items.
Definition: pyfbsdk_generated.h:10156