blob: 69072c66c71301ff6089e0201333aaa2ef4dd0ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import pcop
import pydcop
app = pydcop.anyAppCalled("kspread")
table = app.default.getViews()[0]
table.setSelection( ( 2, 2, 4, 6 ) )
table.setSelectionBgColor( (100, 100, 240) )
print(rect)
print("done")
|