SpreadJS Documentation
getText Method
The row index.
The column index.
The sheet area. If this parameter is not provided, it defaults to viewport.
Gets the formatted text in the cell in the specified sheet area.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: string
value = instance.getText(row, col, sheetArea);
function getText( 
   row : number,
   col : number,
   sheetArea : SheetArea
) : string;

Parameters

row
The row index.
col
The column index.
sheetArea
The sheet area. If this parameter is not provided, it defaults to viewport.

Return Value

Returns the formatted text of the cell.
Example
This example gets the text.
//Set values to Text property
activeSheet.getCell(0, 0).text(10);
//Set values by calling SetText method
activeSheet.setText(1, 0, 10);
//Set values to Value property.
activeSheet.getCell(0, 1).value(10);
//Set values by calling SetValue method.
activeSheet.setValue(1, 1, 10);

    $("#button1").click(function(){
        alert("Obtaining cell values by referring to Text property: " + activeSheet.getCell(0, 0).text() + "\n" +
            "Obtaining cell values by calling GetText method: " + activeSheet.getText(1, 0) + "\n" +
            "Obtaining cell values by referring to Value property: " + activeSheet.getCell(0, 1).value() + "\n" +
            "Obtaining cell values by calling GetValue method: " + activeSheet.getValue(1, 1));
});

//Add button control to page
<input type="button" id="button1" value="button1"/>
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.