Returns one of: heading: Tree heading area. separator: Space between two columns headings; tree: The tree area. cell: A data cell. * Availability: Tk 8.6
(self, x, y)
| 1304 | |
| 1305 | |
| 1306 | def identify_region(self, x, y): |
| 1307 | """Returns one of: |
| 1308 | |
| 1309 | heading: Tree heading area. |
| 1310 | separator: Space between two columns headings; |
| 1311 | tree: The tree area. |
| 1312 | cell: A data cell. |
| 1313 | |
| 1314 | * Availability: Tk 8.6""" |
| 1315 | return self.identify("region", x, y) |
| 1316 | |
| 1317 | |
| 1318 | def identify_element(self, x, y): |