Function: org-region-invisible-p

org-region-invisible-p is a byte-compiled function defined in org-macs.el.

Signature

(org-region-invisible-p BEG END)

Documentation

Check if region if completely hidden.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-region-invisible-p (beg end)
  "Check if region if completely hidden."
  (org-with-wide-buffer
   (and (org-invisible-p beg)
        (org-invisible-p (org-fold-next-visibility-change beg end)))))