Function: org-region-invisible-p
org-region-invisible-p is a byte-compiled function defined in
org-macs.el.gz.
Signature
(org-region-invisible-p BEG END)
Documentation
Check if region if completely hidden.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(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)))))