Variable: org-global-properties-fixed
org-global-properties-fixed is a variable defined in org.el.gz.
Value
(("VISIBILITY_ALL" . "folded children content all")
("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
Documentation
List of property/value pairs that can be inherited by any entry.
These are fixed values, for the preset properties. The user variable
that can be used to add to this list is org-global-properties.
The entries in this list are cons cells where the car is a property name and cdr is a string with the value. If the value represents multiple items like an "_ALL" property, separate the items by spaces.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-global-properties-fixed
'(("VISIBILITY_ALL" . "folded children content all")
("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
"List of property/value pairs that can be inherited by any entry.
These are fixed values, for the preset properties. The user variable
that can be used to add to this list is `org-global-properties'.
The entries in this list are cons cells where the car is a property
name and cdr is a string with the value. If the value represents
multiple items like an \"_ALL\" property, separate the items by
spaces.")