NanoXLSX.Compatibility 3.2.0
Loading...
Searching...
No Matches
CompatibilityConstants.cs
1/*
2 * NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3 * Copyright Raphael Stoeckli © 2026
4 * This library is licensed under the MIT License.
5 * You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
6 */
7
9
11{
15 internal class CompatibilityConstants
16 {
20 public const string EXTERNAL_LINK_OBJECT_ENTITY = "external-link-object-entity";
21
25 public const string EXTERNAL_LINK_RESOLVED_DEFINED_NAMES_ENTITY = "external-link-resolved-defined-names-entity";
26
30 public const string EXTERNAL_LINK_RESOLVED_FORMULAS_ENTITY = "external-link-resolved-formulas-entity";
31
35 public const string EXTERNAL_REFERENCE_WORKBOOK_RID_ENTITY = "external-reference-workbook-rid-entity";
36
40 public const string EXTERNAL_REFERENCE_DEFINED_NAMES_ENTITY = "external-reference-defined-names-entity";
41
45 public const string UNIQUE_PACKAGE_PART_INDEX_PREFIX = "external-link-package-part-"; // add index after this
46
47 }
48}