isEditingValueChanged Method
In This Topic
Whether the editing value has changed.
Syntax
var instance = new GC.Spread.Sheets.CellTypes.Base();
var value; // Type: boolean
value = instance.isEditingValueChanged(oldValue, newValue, context);
function isEditingValueChanged(
: object,
: object,
: object
) : boolean;
Parameters
- oldValue
- Old editing value.
- newValue
- New editing value.
- context
- The context associated with the cell type. See the Remarks for more information.
Return Value
true if oldValue equals newValue; otherwise, false.
See Also