Click or drag to resize
NanoXLSX

Utils Class

General Utils class with static methods
Inheritance Hierarchy
SystemObject
  NanoXLSXUtils

Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntax
C#
public static class Utils

The Utils type exposes the following members.

Constructors
 NameDescription
Private methodStatic memberUtils 
Top
Methods
 NameDescription
Public methodStatic memberGeneratePasswordHash Method to generate an Excel internal password hash to protect workbooks or worksheets
This method is derived from the c++ implementation by Kohei Yoshida (http://kohei.us/2008/01/18/excel-sheet-protection-password-hash/)
Public methodStatic memberGetDateFromOA Method to calculate a common Date from the OA date (OLE automation) format
OA Date format starts at January 1st 1900 (actually 00.01.1900). Dates beyond this date cannot be handled by Excel under normal circumstances and will throw a FormatException
Public methodStatic memberGetInternalColumnWidth Calculates the internal width of a column in characters. This width is used only in the XML documents of worksheets and is usually not exposed to the (Excel) end user
Public methodStatic memberGetInternalPaneSplitHeight Calculates the internal height of a split pane in a worksheet. This height is used only in the XML documents of worksheets and is not exposed to the (Excel) user
Public methodStatic memberGetInternalPaneSplitWidth Calculates the internal width of a split pane in a worksheet. This width is used only in the XML documents of worksheets and is not exposed to the (Excel) end user
Public methodStatic memberGetInternalRowHeight Calculates the internal height of a row. This height is used only in the XML documents of worksheets and is usually not exposed to the (Excel) end user
Public methodStatic memberGetOADateTime Method to convert a date or date and time into the internal Excel time format (OAdate)
Public methodStatic memberGetOADateTimeString Method to convert a date or date and time into the internal Excel time format (OAdate)
Public methodStatic memberGetOATime Method to convert a time into the internal Excel time format (OAdate without days)
Public methodStatic memberGetOATimeString Method to convert a time into the internal Excel time format (OAdate without days)
Public methodStatic memberGetPaneSplitHeight Calculates the height of a split pane in a worksheet, based on the internal value (calculated by GetInternalPaneSplitHeight(Single))
Public methodStatic memberGetPaneSplitWidth Calculates the width of a split pane in a worksheet, based on the internal value (calculated by GetInternalPaneSplitWidth(Single, Single, Single))
Public methodStatic memberToString Transforms an integer to an invariant sting
Public methodStatic memberToUpper Transforms a string to upper case with null check and invariant culture
Top
Fields
 NameDescription
Public fieldStatic memberFIRST_ALLOWED_EXCEL_DATE First date that can be displayed by Excel. Real values before this date cannot be processed.
Public fieldStatic memberFIRST_VALID_EXCEL_DATE All dates before this date are shifted in Excel by -1.0, since Excel assumes wrongly that the year 1900 is a leap year.
See also: https://docs.microsoft.com/en-us/office/troubleshoot/excel/wrongly-assumes-1900-is-leap-year
Public fieldStatic memberINVARIANT_CULTURE Constant for number conversion. The invariant culture (represents mostly the US numbering scheme) ensures that no culture-specific punctuations are used when converting numbers to strings, This is especially important for OOXML number values. See also: https://docs.microsoft.com/en-us/dotnet/api/system.globalization.cultureinfo.invariantculture?view=net-5.0
Public fieldStatic memberLAST_ALLOWED_EXCEL_DATE Last date that can be displayed by Excel. Real values after this date cannot be processed.
Public fieldStatic memberMAX_OADATE_VALUE Maximum valid OAdate value (9999-12-31)
Public fieldStatic memberMIN_OADATE_VALUE Minimum valid OAdate value (1900-01-01). However, Excel displays this value as 1900-01-00 (day zero)
Top
See Also