Handling Data Model"

From Documentation
Line 5: Line 5:
 
Spreadsheet data model is the place where all Spreadsheet cell data stores. Spreadsheet is like a painter which paints its data model in grid-like layout for you. Every action you take on a Spreadsheet (e.g. insertion or deletion) involves a change to its data model. The following sections introduce those APIs to handle a Spreadsheet data model by corresponding user action.
 
Spreadsheet data model is the place where all Spreadsheet cell data stores. Spreadsheet is like a painter which paints its data model in grid-like layout for you. Every action you take on a Spreadsheet (e.g. insertion or deletion) involves a change to its data model. The following sections introduce those APIs to handle a Spreadsheet data model by corresponding user action.
  
 +
For each cell/row/column operation, you need to get a Range object. The helper class <tt>Ranges</tt> supports various methods to create a Range object like:
  
 +
<source lang='java'>
 +
</source>
  
 
{{ZKSpreadsheetEssentials3HeadingToc}}
 
{{ZKSpreadsheetEssentials3HeadingToc}}
 
{{ZKSpreadsheetEssentialsPageFooter}}
 
{{ZKSpreadsheetEssentialsPageFooter}}

Revision as of 08:44, 24 September 2019



Spreadsheet data model is the place where all Spreadsheet cell data stores. Spreadsheet is like a painter which paints its data model in grid-like layout for you. Every action you take on a Spreadsheet (e.g. insertion or deletion) involves a change to its data model. The following sections introduce those APIs to handle a Spreadsheet data model by corresponding user action.

For each cell/row/column operation, you need to get a Range object. The helper class Ranges supports various methods to create a Range object like:



All source code listed in this book is at Github.


Last Update : 2019/09/24

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.