Newer
Older
ClosedXML / ClosedXML / Excel / XLConstants.cs
@Francois Botha Francois Botha on 23 Oct 2017 510 bytes Save calculated column formula in table field (#528)
namespace ClosedXML.Excel
{
    //Use the class to store magic strings or variables.
    public static class XLConstants
    {
        public const string PivotTableValuesSentinalLabel = "{{Values}}";
        public const int NumberOfBuiltInStyles = 164; // But they are stored as 0-based (0 - 163)

        internal static class Comment
        {
            internal const string ShapeTypeId = "#_x0000_t202";
            internal const string AlternateShapeTypeId = "#_xssf_cell_comment";
        }
    }
}