diff options
| author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-29 16:25:24 -0400 | 
|---|---|---|
| committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-30 11:37:19 -0400 | 
| commit | 00134920ec968ff492c88d8c5a6af22f1ebfa328 (patch) | |
| tree | 138d0024ec9ab69ef5ec5025429f39ae5b777691 | |
| parent | 2990def85b40e0529049a1bca208d4ebb8600f5a (diff) | |
New option for INDIRECT reference syntax.
Change-Id: I4c754c39ab27f35076d38868b52321a3d3baf9ea
| -rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Calc.xcs | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs index 0cd2ff32ec37..245f2ff15058 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs @@ -1348,6 +1348,35 @@                      </info>                      <value></value>                  </prop> +                <prop oor:name="IndirectFuncGrammar" oor:type="xs:int" oor:nillable="false"> +                    <!-- UIHints: Tools - Options - Spreadsheet - Formula --> +                    <info> +                        <author>kyoshida</author> +                        <desc>Grammar for INDIRECT function</desc> +                    </info> +                    <constraints> +                        <enumeration oor:value="-1"> +                            <info> +                                <desc>same as formula grammar</desc> +                            </info> +                        </enumeration> +                        <enumeration oor:value="0"> +                            <info> +                                <desc>Calc A1</desc> +                            </info> +                        </enumeration> +                        <enumeration oor:value="1"> +                            <info> +                                <desc>Excel A1</desc> +                            </info> +                        </enumeration> +                        <enumeration oor:value="2"> +                            <info> +                                <desc>Excel R1C1</desc> +                            </info> +                        </enumeration> +                    </constraints> +                </prop>              </group>          </group>  		<group oor:name="Revision"> | 
