forked from PHPOffice/PhpSpreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No source code changes.
- Loading branch information
Showing
2 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0"?> | ||
<?mso-application progid="Excel.Sheet"?> | ||
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" | ||
xmlns:o="urn:schemas-microsoft-com:office:office" | ||
xmlns:x="urn:schemas-microsoft-com:office:excel" | ||
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" | ||
xmlns:html="http://www.w3.org/TR/REC-html40"> | ||
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> | ||
<Title>Untitled Spreadsheet</Title> | ||
<Author>Unknown Creator</Author> | ||
<LastAuthor>Owen Leibman</LastAuthor> | ||
<Created>2024-12-30T08:21:15Z</Created> | ||
<LastSaved>2024-12-30T08:21:15Z</LastSaved> | ||
<Version>16.00</Version> | ||
</DocumentProperties> | ||
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office"> | ||
<AllowPNG/> | ||
</OfficeDocumentSettings> | ||
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel"> | ||
<WindowHeight>6510</WindowHeight> | ||
<WindowWidth>19200</WindowWidth> | ||
<WindowTopX>32767</WindowTopX> | ||
<WindowTopY>32767</WindowTopY> | ||
<ProtectStructure>False</ProtectStructure> | ||
<ProtectWindows>False</ProtectWindows> | ||
</ExcelWorkbook> | ||
<Styles> | ||
<Style ss:ID="Default" ss:Name="Normal"> | ||
<Alignment ss:Vertical="Bottom"/> | ||
<Borders/> | ||
<Font ss:FontName="Calibri" ss:Size="11" ss:Color="#000000"/> | ||
<Interior/> | ||
<NumberFormat/> | ||
<Protection/> | ||
</Style> | ||
</Styles> | ||
<Worksheet ss:Name="Worksheet"> | ||
<Table ss:ExpandedColumnCount="1" ss:ExpandedRowCount="1" x:FullColumns="1" | ||
x:FullRows="1" ss:DefaultRowHeight="14.5"> | ||
<Row ss:AutoFitHeight="0"/> | ||
</Table> | ||
<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"> | ||
<PageSetup> | ||
<Header x:Margin="0.3"/> | ||
<Footer x:Margin="0.3"/> | ||
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/> | ||
</PageSetup> | ||
<Unsynced/> | ||
<Print> | ||
<ValidPrinterInfo/> | ||
<NoOrientation/> | ||
<HorizontalResolution>600</HorizontalResolution> | ||
<VerticalResolution>600</VerticalResolution> | ||
</Print> | ||
<Selected/> | ||
<ProtectObjects>False</ProtectObjects> | ||
<ProtectScenarios>False</ProtectScenarios> | ||
</WorksheetOptions> | ||
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel"> | ||
<Range>R1</Range> | ||
<Type>List</Type> | ||
<UseBlank/> | ||
<CellRangeList/> | ||
<Value>"Item A,Item B,Item C"</Value> | ||
<InputHide/> | ||
<ErrorMessage>Value is not a member of allowed list</ErrorMessage> | ||
<ErrorTitle>Input Error</ErrorTitle> | ||
</DataValidation> | ||
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel"> | ||
<Range>R1C1</Range> | ||
<Type>List</Type> | ||
<UseBlank/> | ||
<CellRangeList/> | ||
<Value>"Item A,Item B,Item D"</Value> | ||
<InputHide/> | ||
<ComboHide/> | ||
<ErrorHide/> | ||
<ErrorStyle>Warn</ErrorStyle> | ||
<ErrorMessage>Value is not a member of allowed list</ErrorMessage> | ||
<ErrorTitle>Input Error</ErrorTitle> | ||
</DataValidation> | ||
</Worksheet> | ||
</Workbook> |