SpreadJS Documentation
parse Method
The parse text string.
The parse format string.
The context associated with the cell type. See the Remarks for more information.
Parses the text with the specified format string to an object.
Syntax
var instance = new GcSpread.Sheets.BaseCellType();
var value; // Type: object
value = instance.parse(text, formatStr, context);
function parse( 
   text : string,
   formatStr : object,
   context : object
) : object;

Parameters

text
The parse text string.
formatStr
The parse format string.
context
The context associated with the cell type. See the Remarks for more information.

Return Value

The parsed object.
Remarks

The context parameter can include the following items:

Item Type Description
context.sheet GcSpread.Sheets.Sheet instance Indicates the current sheet.
context.row number The row index.
context.col number The column index.
context.sheetArea GcSpread.Sheets.SheetArea The current sheet area.

 

See Also

Reference

BaseCellType type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.