RevisionCellMove
RevisionCellMove class
Represents a revision record on a cell(s) that moved.
class RevisionCellMove extends Revision;
Constructors
| Constructor | Description |
|---|---|
| constructor(Revision) | Constructs from a parent object convertible to this. |
Properties
| Property | Type | Description |
|---|---|---|
| sourceArea | CellArea | Readonly. Gets the source area. |
| destinationArea | CellArea | Readonly. Gets the destination area. |
| sourceWorksheet | Worksheet | Readonly. Gets the source worksheet. |
| worksheet | Worksheet | Readonly. Gets the worksheet. |
| id | number | Readonly. Gets the number of this revision. |
Methods
| Method | Description |
|---|---|
| getSourceArea() | @deprecated. Please use the ‘sourceArea’ property instead. Gets the source area. |
| getDestinationArea() | @deprecated. Please use the ‘destinationArea’ property instead. Gets the destination area. |
| getSourceWorksheet() | @deprecated. Please use the ‘sourceWorksheet’ property instead. Gets the source worksheet. |
| isNull() | Checks whether the implementation object is null. |
| getWorksheet() | @deprecated. Please use the ‘worksheet’ property instead. Gets the worksheet. |
| getId() | @deprecated. Please use the ‘id’ property instead. Gets the number of this revision. |
| getType() | Represents the type of revision. |
constructor(Revision)
Constructs from a parent object convertible to this.
constructor(obj: Revision);
Parameters:
| Parameter | Type | Description |
|---|---|---|
| obj | Revision | The parent object. |
sourceArea
Readonly. Gets the source area.
sourceArea : CellArea;
destinationArea
Readonly. Gets the destination area.
destinationArea : CellArea;
sourceWorksheet
Readonly. Gets the source worksheet.
sourceWorksheet : Worksheet;
worksheet
Readonly. Gets the worksheet.
worksheet : Worksheet;
id
Readonly. Gets the number of this revision.
id : number;
Remarks
Zero means this revision does not contains id.
getSourceArea()
@deprecated. Please use the ‘sourceArea’ property instead. Gets the source area.
getSourceArea() : CellArea;
Returns
getDestinationArea()
@deprecated. Please use the ‘destinationArea’ property instead. Gets the destination area.
getDestinationArea() : CellArea;
Returns
getSourceWorksheet()
@deprecated. Please use the ‘sourceWorksheet’ property instead. Gets the source worksheet.
getSourceWorksheet() : Worksheet;
Returns
isNull()
Checks whether the implementation object is null.
isNull() : boolean;
getWorksheet()
@deprecated. Please use the ‘worksheet’ property instead. Gets the worksheet.
getWorksheet() : Worksheet;
Returns
getId()
@deprecated. Please use the ‘id’ property instead. Gets the number of this revision.
getId() : number;
Remarks
Zero means this revision does not contains id.
getType()
Represents the type of revision.
getType() : RevisionType;
Returns