SpreadJS Documentation
InvalidOperationType Enumeration
GC.Spread.Sheets Namespace : InvalidOperationType Enumeration
Identifies which operation was invalid.
Members
MemberDescription
changePartOfArrayFormulaSpecifies the insert row is invalid.
changeSheetNameSpecifies the changed sheet name is invalid.
copyPasteSpecifies the copy paste is invalid.
dragDropSpecifies the drag drop is invalid.
dragFillSpecifies the drag fill is invalid.
setFormulaSpecifes the formula is invalid.
Example
This example gets the invalid type.
activeSheet.getCell(1,1).locked(true);
activeSheet.options.isProtected = true;
activeSheet.getCell(1,1).value(2);

activeSheet.bind(GC.Spread.Sheets.Events.InvalidOperation, function (e, info) {    
        alert("Message (" + info.invalidType + ")");
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.InvalidOperationType

See Also

Reference

GC.Spread.Sheets Namespace