1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use bail;
use BytesStart;
use crateDimension;
/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.sheetdimension?view=openxml-3.0.1
///
/// This element specifies the used range of the worksheet.
/// It specifies the row and column bounds of used cells in the worksheet.
/// This is optional and is not required.
/// Used cells include cells with formulas, text content, and cell formatting.
/// When an entire column is formatted, only the first cell in that column is considered used.
///
/// Example:
/// ```
///
/// <dimension ref="A1:C2"/>
/// ```
/// dimension (Worksheet Dimensions)
pub type XlsxSheetDimension = Dimension;
pub