Table (Named Data Type)
Used to store tables with multiple rows. Items define columns, which can be of any item type.
| Property | Template XML | Description | 
|---|---|---|
| Settings | [E] Settings
 | 
|
| Table type |     [A] ENUM TableType
 | 
Table type {[V] General,[V] Depth,[V] DepthNoDuplicates,[V] Thickness,[V] DepthFromTo,[V] DepthFromToNoDuplicates,[V] DepthFromToOptionalDepthTo}
 | 
| Item | [:E:] Item
 | 
List of column definitions of any type including Table
 | 
Table types have some obligatory columns according to following table:
| Table type | Enum value | Column name | Column GUID | Note | 
|---|---|---|---|---|
| Table with arbitrary columns | [V] General
 | 
No arbitrary columns | ||
| Table with Depth column | [V] Depth
 | 
Depth | {9620F214-49F6-46E2-9E44-5E7FDE8D3289}
 | 
|
| Table with Depth column,
 no duplicate depths allowed  | 
[V] DepthNoDuplicates
 | 
Depth | {9620F214-49F6-46E2-9E44-5E7FDE8D3289}
 | 
|
| Table with layers defined by its thickness | [V] Thickness
 | 
Thickness | {94D6458E-3A0C-4157-B5EF-5793907A78FC}
 | 
Thickness is defined in data, but user can optionally enter Depth from and Depth to | 
| Table with depth intervals from-to | [V] DepthFromTo
 | 
Depth from | {4E767AEA-719A-4A5F-A6CB-C8419ACE7146}
 | 
It is possible to have gaps between rows, intervals can overlap | 
| Depth to | {FD0C4901-6D88-4872-AC41-CE757CB7AAE5}
 | |||
| Table with depth intervals from-to,
 no duplicate depth ranges allowed  | 
[V] DepthFromToNoDuplicates
 | 
Depth from | {4E767AEA-719A-4A5F-A6CB-C8419ACE7146}
 | 
It is possible to have gaps between rows, intervals cannot overlap | 
| Depth to | {FD0C4901-6D88-4872-AC41-CE757CB7AAE5}
 | |||
| Table with depth intervals from-to,
 depth to is optional  | 
[V] DepthFromToOptionalDepthTo
 | 
Depth from | {4E767AEA-719A-4A5F-A6CB-C8419ACE7146}
 | 
User can enter interval or depth only | 
| Depth to | {FD0C4901-6D88-4872-AC41-CE757CB7AAE5}
 | 
Example of the Template XML
<Item ID="{21DA2A83-A06A-40CA-8ACF-6FB8C593CC3D}" ItemType="Table">
  <Name ... />
  <Settings TableType="Thickness" />
  <Item ID="{94D6458E-3A0C-4157-B5EF-5793907A78FC}" ItemType="Double">
    <Name Lang="CS" Text="Mocnost" />
    <Settings Symbol="t" UnitType="Length" UnitDefMetric="m" DecimalDigitsMetric="2" ExponentMetric="false" />
  </Item>
  <Item ID="{2CDBAE53-1285-44FB-874B-BE512C0C22F6}" ItemType="String">
    <Name Lang="CS" Text="Název zeminy" />
    <Settings />
  </Item>
  <Item ... />
</Item>
Example of the Data XML
<Item ID="{21DA2A83-A06A-40CA-8ACF-6FB8C593CC3D}">
  <Row>
    <Item ID="{94D6458E-3A0C-4157-B5EF-5793907A78FC}" DblValue="0,50" Unit="Length_m" />
    <Item ID="{2CDBAE53-1285-44FB-874B-BE512C0C22F6}" StrValue="gravel" />
    <Item ...  />
  </Row>
  <Row>
    <Item ID="{94D6458E-3A0C-4157-B5EF-5793907A78FC}" DblValue="1,50" Unit="Length_m" />
    <Item ID="{2CDBAE53-1285-44FB-874B-BE512C0C22F6}" StrValue="sand" />
    <Item ...  />
  </Row>
  <Row .... />
  <Row .... />
</Item>
The subitem type is the difference between Table (subitems Row) and Group (subitems Item).