[]
        
(Showing Draft Content)

GC.Spread.Sheets.TableSheet.BuiltInRowActions

Class: BuiltInRowActions

Sheets.TableSheet.BuiltInRowActions

Table of contents

Constructors

Properties

Constructors

constructor

new BuiltInRowActions()

Represent the table sheet built-in row actions.

Properties

dirtyStatus

Static dirtyStatus: IRowActionOptions

Represents the data changes in a row

property dirtyStatus - show the data changes in a row.


pinRow

Static pinRow: IRowActionOptions

Represents pin a row.

property pinRow - pin a row.


removeRow

Static removeRow: IRowActionOptions

Represents remove a row.

property removeRow - remove a row.

example

let buildInRowActions = GC.Spread.Sheets.TableSheet.BuiltInRowActions;
let options = tableSheet.rowActionOptions();
tableSheet.rowActionOptions(options.concat([buildInRowActions.removeRow,buildInRowActions.saveRow,buildInRowActions.resetRow]));

resetRow

Static resetRow: IRowActionOptions

Represents reset the data change.

property resetRow - reset the data changes in a row.

example

let buildInRowActions = GC.Spread.Sheets.TableSheet.BuiltInRowActions;
let options = tableSheet.rowActionOptions();
tableSheet.rowActionOptions(options.concat([buildInRowActions.removeRow,buildInRowActions.saveRow,buildInRowActions.resetRow]));

saveRow

Static saveRow: IRowActionOptions

Represents save the data change in a row.

property saveRow - save the data changes in a row.

example

let buildInRowActions = GC.Spread.Sheets.TableSheet.BuiltInRowActions;
let options = tableSheet.rowActionOptions();
tableSheet.rowActionOptions(options.concat([buildInRowActions.removeRow,buildInRowActions.saveRow,buildInRowActions.resetRow]));

warningInfo

Static warningInfo: IRowActionOptions

Represents the text of warning info.

property warningInfo - show warning infomation in a row.