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

Lines Matching refs:col

895     def column_width(self, col=0, width=None, chars=None):
897 return self.tk.call(self._w, 'column', 'width', col, width)
899 return self.tk.call(self._w, 'column', 'width', col,
926 def header_create(self, col, cnf={}, **kw):
927 self.tk.call(self._w, 'header', 'create', col, *self._options(cnf, kw))
929 def header_configure(self, col, cnf={}, **kw):
933 self.tk.call(self._w, 'header', 'configure', col)))
934 self.tk.call(self._w, 'header', 'configure', col,
937 def header_cget(self, col, opt):
938 return self.tk.call(self._w, 'header', 'cget', col, opt)
940 def header_exists(self, col):
941 return self.tk.call(self._w, 'header', 'exists', col)
943 def header_delete(self, col):
944 self.tk.call(self._w, 'header', 'delete', col)
946 def header_size(self, col):
947 return self.tk.call(self._w, 'header', 'size', col)
1015 def item_cget(self, entry, col, opt):
1016 return self.tk.call(self._w, 'item', 'cget', entry, col, opt)
1018 def item_configure(self, entry, col, cnf={}, **kw):
1022 self.tk.call(self._w, 'item', 'configure', entry, col)))
1023 self.tk.call(self._w, 'item', 'configure', entry, col,
1026 def item_create(self, entry, col, cnf={}, **kw):
1028 self._w, 'item', 'create', entry, col, *self._options(cnf, kw))
1030 def item_exists(self, entry, col):
1031 return self.tk.call(self._w, 'item', 'exists', entry, col)
1033 def item_delete(self, entry, col):
1034 self.tk.call(self._w, 'item', 'delete', entry, col)