The HsvData object enables you to work with data. Examples for the following methods introduce this object:
GetCell returns a cell’s data and status.
GetCell returns data as a Double. To return data as a string, use GetTextCell. GetTextCell also enables you to scale and specify the number of decimal places for the data. |
GetCellLineItems returns the data and descriptions of a cell’s line items.
GetCellLineItems returns line item data as a Double. To return the data as a string, use GetTextCellLineItems. |
GetCells returns the data and statuses of multiple cells.
GetCells returns data as a Double. To return data as a string, use GetTextCells. GetTextCells also enables you to scale and specify the number of decimal places for the data. |
SetCell inserts data into a cell. You also can use SetCell to set a cell to Null.
SetCell takes cell data as a Double. To pass cell data as a string that you can scale, use SetTextCell. |
SetCellLineItems inserts line items into a cell.
SetCellLineitems takes line item data as a Double. To pass the data as a string, use SetTextCellLineItems. |
SetCells sets data for multiple cells.
SetCells takes data as a Double. To pass data as a string that you can scale, use SetTextCells. |