Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 46a4151

Browse files
author
Fredrik Lundh
committed
-- added a couple of missing Tkinter constants (canvas item styles,
place bordermode, etc)
1 parent 24037f7 commit 46a4151

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lib/lib-tk/Tkconstants.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
# -align
5353
BASELINE='baseline'
5454

55+
# -bordermode
56+
INSIDE='inside'
57+
OUTSIDE='outside'
58+
5559
# Special tags, marks and insert positions
5660
SEL='sel'
5761
SEL_FIRST='sel.first'
@@ -79,3 +83,21 @@
7983
BROWSE='browse'
8084
MULTIPLE='multiple'
8185
EXTENDED='extended'
86+
87+
# Various canvas styles
88+
PIESLICE='pieslice'
89+
CHORD='chord'
90+
ARC='arc'
91+
FIRST='first'
92+
LAST='last'
93+
BUTT='butt'
94+
PROJECTING='projecting'
95+
ROUND='round'
96+
BEVEL='bevel'
97+
MITER='miter'
98+
99+
# Arguments to xview/yview
100+
MOVETO='moveto'
101+
SCROLL='scroll'
102+
UNITS='units'
103+
PAGES='pages'

0 commit comments

Comments
 (0)