Doloro GDK 22 .1.0 Beta
by Tauri Interactive
Runtime \ Data Structure

Table of Contents

About

The module has several layers of architecture. Each layer works stably by itself without demands to higher layer module but has features limit.

Layer Architecture member Role
Low Table Database that contains 2 dimensional data set.
Mid Spreadsheet Project that envelopes a Table and contains
higher level data and settings.
High Solution Complex workspace that bonds several spreadsheets
into within common environment.

Table

Raw 2 dimensional data set.

  • Provides elements read\write access in O(1) for existing clusters.
  • New clusters initialization requires O(EXIST_CLUSTERS_N) time.
  • Supports binary serialization.

Explore API: Doloro.DataManagement.Tables.Table

Spreadsheet

Object\File that contains settings of a certain table that defines decorating data of database members and supplies built above tools with settings describing data-use behavior.

Allows to manage following settings:

  • Columns\rows sizes
  • Columns\rows titles
  • User scope position
  • Styles

Explore API: Doloro.DataManagement.Tables.Spreadsheet

Solution

Object\File that bonds different spreadsheets to single project.

  • NOT IMPLEMENTED YET Implements API for bridging data between different tables.
  • Manages spreadsheets loading.

Explore API: Doloro.DataManagement.Tables.Solution