Skip to content

Commit

Permalink
isolate Data Types section on docs
Browse files Browse the repository at this point in the history
  • Loading branch information
felipenoris committed Sep 5, 2022
1 parent e8dfdc2 commit 2acce73
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions docs/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@ The example above used `xf = XLSX.readxlsx(filename)` to open a file, so all fil

You can also use `XLSX.openxlsx` to read file contents as needed (see [Reading Large Excel Files and Caching](@ref)).

## Data Types

This package uses the following concrete types when handling XLSX files.

```@docs
XLSX.CellValueType
```

- Abstract types of these concrete types are converted to the appropriate concrete type when writing.

- `Nothing` values are converted to `Missing` when writing.

## Read Tabular Data

The [`XLSX.gettable`](@ref) method returns tabular data from a spreadsheet as a struct `XLSX.DataTable`
Expand Down Expand Up @@ -219,18 +231,6 @@ v1=3, v2=third

## Writing Excel Files

### Data Types

This package uses the following concrete types when handling XLSX files.

```@docs
XLSX.CellValueType
```

- Abstract types of these concrete types are converted to the appropriate concrete type when writing.

- `Nothing` values are converted to `Missing` when writing.

### Create New Files

Opening a file in `write` mode with `XLSX.openxlsx` will open a new (blank) Excel file for editing.
Expand Down

0 comments on commit 2acce73

Please sign in to comment.