Package: gtk
Function gtk:text-buffer-bounds
Lambda Listgtk:text-buffer-bounds (buffer) SyntaxArgumentsDetails          
    Retrieves the first and last iterators in the text buffer.    The entire text buffer lies within the range [start, end).   Examples
(defun clear-buffer (buffer)
  (multiple-value-bind (start end)
      (gtk:text-buffer-bounds buffer)
    (gtk:text-buffer-delete buffer start end)))           | See also | 
2025-07-27