File: src/Calx/Sheet/SheetEvent.ts

Recommend this page to a friend!
  Packages of ikhsan   jQuery Calx   src/Calx/Sheet/SheetEvent.ts   Download  
File: src/Calx/Sheet/SheetEvent.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: jQuery Calx
Calculate form input values based on formulas
Author: By
Last change:
Date: 3 months ago
Size: 781 bytes
 

Contents

Class file image Download
/** * Available sheet events. */ export enum SheetEvent { CALCULATION_STARTED = 'calculation.started', CALCULATION_PAUSED = 'calculation.paused', CALCULATION_RESUMED = 'calculation.resumed', CALCULATION_FINISHED = 'calculation.finished', CELL_ADDED = 'cell.added', CELL_REMOVED = 'cell.removed', CELL_CREATED = "CELL_CREATED", ELEMENT_ATTACHED = 'element.attached', ELEMENT_DETACHED = 'element.detached', } export enum SheetState { CALCULATION_STARTED = 'calculation.started', CALCULATION_PAUSED = 'calculation.paused', CALCULATION_RESUMED = 'calculation.resumed', CALCULATION_FINISHED = 'calculation.finished', CALCULATION_IDLE = 'calculation.idle', }