DeleteOptions

DeleteOptions class

Represents the setting of deleting rows/columns.

class DeleteOptions;

Constructors

ConstructorDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
updateReferencebooleanIndicates if update references in other worksheets.
formulaChangeMonitorAbstractFormulaChangeMonitorGets/sets the monitor for tracking changes caused by the deletion.

Methods

MethodDescription
getUpdateReference()@deprecated. Please use the ‘updateReference’ property instead. Indicates if update references in other worksheets.
setUpdateReference(boolean)@deprecated. Please use the ‘updateReference’ property instead. Indicates if update references in other worksheets.
getFormulaChangeMonitor()@deprecated. Please use the ‘formulaChangeMonitor’ property instead. Gets/sets the monitor for tracking changes caused by the deletion.
setFormulaChangeMonitor(AbstractFormulaChangeMonitor)@deprecated. Please use the ‘formulaChangeMonitor’ property instead. Gets/sets the monitor for tracking changes caused by the deletion.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

updateReference

Indicates if update references in other worksheets.

updateReference : boolean;

formulaChangeMonitor

Gets/sets the monitor for tracking changes caused by the deletion.

formulaChangeMonitor : AbstractFormulaChangeMonitor;

getUpdateReference()

@deprecated. Please use the ‘updateReference’ property instead. Indicates if update references in other worksheets.

getUpdateReference() : boolean;

setUpdateReference(boolean)

@deprecated. Please use the ‘updateReference’ property instead. Indicates if update references in other worksheets.

setUpdateReference(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

getFormulaChangeMonitor()

@deprecated. Please use the ‘formulaChangeMonitor’ property instead. Gets/sets the monitor for tracking changes caused by the deletion.

getFormulaChangeMonitor() : AbstractFormulaChangeMonitor;

Returns

AbstractFormulaChangeMonitor

setFormulaChangeMonitor(AbstractFormulaChangeMonitor)

@deprecated. Please use the ‘formulaChangeMonitor’ property instead. Gets/sets the monitor for tracking changes caused by the deletion.

setFormulaChangeMonitor(value: AbstractFormulaChangeMonitor) : void;

Parameters:

ParameterTypeDescription
valueAbstractFormulaChangeMonitorThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;