Skip to content

Cell settings

清沐 edited this page Mar 29, 2020 · 1 revision

By default, the program will automatically identify cell content types. Currently, there are three types of automatic identification:

  1. String
  2. Double
  3. Boolean

Set to string type data to do the following:

Add attribute string on td to set the cell type to string

<table>
    <tr>
        <td string>19</td>
    </tr>
</table>

Set to numeric data type to do the following:

Add the attribute double on td to set the cell type to numeric value

<table>
    <tr>
        <td double>19</td>
    </tr>
</table>

Set to boolean type data to do the following:

Add attribute boolean on td to set the cell type to string

<table>
    <tr>
        <td boolean>true</td>
    </tr>
</table>
Clone this wiki locally