onBeforeFormatChange

fires before cell format is changed

void onBeforeFormatChange(number row,number column,string format,string oldFormat){ ... };

Parameters

rownumberrow ID
columnnumbercolumn ID
formatstringnew format for the cell
oldFormatstringold format of the cell

Example

$$("ssheet1").attachEvent("onBeforeFormatChange",function(row,col,f,oF){
    // handler code here
});

See also
Back to top