[]
Sheets.TableSheet.BuiltInRowActions
• new BuiltInRowActions()
Represent the table sheet built-in row actions.
▪ Static
dirtyStatus: IRowActionOptions
Represents the data changes in a row
property
dirtyStatus - show the data changes in a row.
▪ Static
pinRow: IRowActionOptions
Represents pin a row.
property
pinRow - pin a row.
▪ 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]));
▪ 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]));
▪ 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]));
▪ Static
warningInfo: IRowActionOptions
Represents the text of warning info.
property
warningInfo - show warning infomation in a row.