Home | History | Annotate | Download | only in lib-tk

Lines Matching refs:tagname

1428     def tag_bind(self, tagname, sequence=None, callback=None):
1429 """Bind a callback for the given event sequence to the tag tagname.
1432 tagname), sequence, callback, add=0)
1435 def tag_configure(self, tagname, option=None, **kw):
1436 """Query or modify the options for the specified tagname.
1438 If kw is not given, returns a dict of the option settings for tagname.
1440 specified tagname. Otherwise, sets the options to the corresponding
1441 values for the given tagname."""
1445 tagname)
1448 def tag_has(self, tagname, item=None):
1450 specified item has the given tagname. Otherwise, returns a list of
1454 return self.tk.call(self._w, "tag", "has", tagname, item)