GoFiler Legato Script Reference
Legato v 1.5b Application v 5.24b
|
Table of Contents | < < Previous | Next >> |
Chapter Eight — Data Functions (continued)
Overview
The DataSheetGetCell function returns all the available properties for a cell in the form of a string array.
Syntax/Parameters
Syntax
string[] = DataSheetGetCell ( handle hSheet, int row, int column );
string[] = DataSheetGetCell ( handle hSheet, string row, string column );
string[] = DataSheetGetCell ( handle hSheet, string address );
Parameters
hSheet
A handle to a Data Sheet Object.
row
An int or string specifying a zero-based row or Y position for the cell.
column
An int or string specifying a zero-based column or X position for the cell.
address
A string specifying the cell position by cell address such as “A1”.
Return Value
Returns a string array containing various data fields related to the cell or an empty array on failure. Use the GetLastError function to retrieve error information.
Remarks
The DataSheetGetCell function does not return the display text associated with the cell. The returned array will have the following fields (as represented by key names) present even if the fields do not contain data or if the cell does not physically exist:
Element Key Name | Description | |||
RowIndex | The zero-based row index of the cell. Same as the address specified in call. | |||
ColumnIndex | The zero-based column index of the cell. Same as the address specified in call. | |||
Display | Display data. This is normally the native data unless the content is formatted. This field can be up to 1 MB in size. | |||
Flags | A hex representation of the bitwise cell flags in the form of DS_CF_. See introduction to this section for details. | |||
Attributes | Aggregate attributes in the form of a CSV list. These are further disassembled below. This field can be up to 1 MB in size. | |||
ColumnSpan | Zero-based column span. | |||
RowSpan | Zero-based row span.† | |||
ContentHeight | Measured content height in pixels. | |||
ContentWidth | Measured content width in pixels. | |||
StyleIndex | Style index for display. | |||
DisplayFlags | Extended display flags in the form of DS_CD_. The value depends on the underlying type and bits share positions across types. See introduction to this section for details. |
Attribute fields will be present if the cell has aggregate attribute data (even if the attribute fields are empty):
FieldTypeData | Extended field data for non-text style cells. | |||
NativeData | Native data for non-text style cells. For example, the text of a radio style button. | |||
Name | The name of the cell. | |||
Description | The description of the cell. | |||
Tip | An optional popup tip. Tips are only displayed if the host view supports tooltip popups. | |||
Comment | A general comment. | |||
Review | A review note. | |||
PrivateA | General caller private data. | |||
PrivateB | General caller private data. | |||
Events | Script Events. |
Because the function can return empty fields or an empty array on error if the cell does not exist or if the cell is empty, the GetLastError function should be used to determine if an error occurred.
Related Functions
Platform Support
Go13, Go16, GoFiler Complete, GoFiler Corporate, GoFiler, GoFiler Lite, GoXBRL
Legato IDE, Legato Basic
Page revised 2024-10-21
Table of Contents | < < Previous | Next >> |
© 2012-2024 Novaworks, LLC. All rights reserved worldwide. Unauthorized use, duplication or transmission prohibited by law. Portions of the software are protected by US Patents 10,095,672, 10,706,221 and 11,210,456. GoFiler™ and Legato™ are trademarks of Novaworks, LLC. EDGAR® is a federally registered trademark of the U.S. Securities and Exchange Commission. Novaworks is not affiliated with or approved by the U.S. Securities and Exchange Commission. All other trademarks are property of their respective owners. Use of the features specified in this language are subject to terms, conditions and limitations of the Software License Agreement.