RevisionInsertDelete
RevisionInsertDelete class
Represents a revision record of a row/column insert/delete action.
class RevisionInsertDelete extends Revision;
Constructors
Constructor | Description |
---|---|
constructor(Revision) | Constructs from a parent object convertible to this. |
Properties
Property | Type | Description |
---|---|---|
cellArea | CellArea | Readonly. Gets the inserting/deleting range. |
actionType | RevisionActionType | Readonly. Gets the action type of this revision. |
revisions | RevisionCollection | Readonly. Gets revision list by this operation. |
worksheet | Worksheet | Readonly. Gets the worksheet. |
id | number | Readonly. Gets the number of this revision. |
Methods
Method | Description |
---|---|
getCellArea() | @deprecated. Please use the ‘cellArea’ property instead. Gets the inserting/deleting range. |
getActionType() | @deprecated. Please use the ‘actionType’ property instead. Gets the action type of this revision. |
getRevisions() | @deprecated. Please use the ‘revisions’ property instead. Gets revision list by this operation. |
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. |
cellArea
Readonly. Gets the inserting/deleting range.
cellArea : CellArea;
actionType
Readonly. Gets the action type of this revision.
actionType : RevisionActionType;
revisions
Readonly. Gets revision list by this operation.
revisions : RevisionCollection;
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.
getCellArea()
@deprecated. Please use the ‘cellArea’ property instead. Gets the inserting/deleting range.
getCellArea() : CellArea;
Returns
getActionType()
@deprecated. Please use the ‘actionType’ property instead. Gets the action type of this revision.
getActionType() : RevisionActionType;
Returns
getRevisions()
@deprecated. Please use the ‘revisions’ property instead. Gets revision list by this operation.
getRevisions() : RevisionCollection;
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