# GC.Spread.Sheets.TableSheet.BuiltInRowActions

## Content

# Class: BuiltInRowActions

[Sheets](../modules/GC.Spread.Sheets).[TableSheet](../modules/GC.Spread.Sheets.TableSheet).BuiltInRowActions

## Table of contents

### Constructors

- [constructor](GC.Spread.Sheets.TableSheet.BuiltInRowActions#constructor)

### Properties

- [dirtyStatus](GC.Spread.Sheets.TableSheet.BuiltInRowActions#dirtystatus)
- [pinRow](GC.Spread.Sheets.TableSheet.BuiltInRowActions#pinrow)
- [removeRow](GC.Spread.Sheets.TableSheet.BuiltInRowActions#removerow)
- [resetRow](GC.Spread.Sheets.TableSheet.BuiltInRowActions#resetrow)
- [saveRow](GC.Spread.Sheets.TableSheet.BuiltInRowActions#saverow)
- [warningInfo](GC.Spread.Sheets.TableSheet.BuiltInRowActions#warninginfo)

## Constructors

### <a id="constructor" name="constructor"></a> constructor

• **new BuiltInRowActions**()

Represent the table sheet built-in row actions.

## Properties

### <a id="dirtystatus" name="dirtystatus"></a> dirtyStatus

▪ `Static` **dirtyStatus**: [`IRowActionOptions`](../interfaces/GC.Spread.Sheets.TableSheet.IRowActionOptions)

Represents the data changes in a row

**`property`** {GC.Spread.Sheets.TableSheet.IRowActionOptions} dirtyStatus - show the data changes in a row.

___

### <a id="pinrow" name="pinrow"></a> pinRow

▪ `Static` **pinRow**: [`IRowActionOptions`](../interfaces/GC.Spread.Sheets.TableSheet.IRowActionOptions)

Represents pin a row.

**`property`** {GC.Spread.Sheets.TableSheet.IRowActionOptions} pinRow - pin a row.

___

### <a id="removerow" name="removerow"></a> removeRow

▪ `Static` **removeRow**: [`IRowActionOptions`](../interfaces/GC.Spread.Sheets.TableSheet.IRowActionOptions)

Represents remove a row.

**`property`** {GC.Spread.Sheets.TableSheet.IRowActionOptions} removeRow - remove a row.

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

___

### <a id="resetrow" name="resetrow"></a> resetRow

▪ `Static` **resetRow**: [`IRowActionOptions`](../interfaces/GC.Spread.Sheets.TableSheet.IRowActionOptions)

Represents reset the data change.

**`property`** {GC.Spread.Sheets.TableSheet.IRowActionOptions} resetRow - reset the data changes in a row.

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

___

### <a id="saverow" name="saverow"></a> saveRow

▪ `Static` **saveRow**: [`IRowActionOptions`](../interfaces/GC.Spread.Sheets.TableSheet.IRowActionOptions)

Represents save the data change in a row.

**`property`** {GC.Spread.Sheets.TableSheet.IRowActionOptions} saveRow - save the data changes in a row.

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

___

### <a id="warninginfo" name="warninginfo"></a> warningInfo

▪ `Static` **warningInfo**: [`IRowActionOptions`](../interfaces/GC.Spread.Sheets.TableSheet.IRowActionOptions)

Represents the text of warning info.

**`property`** {GC.Spread.Sheets.TableSheet.IRowActionOptions} warningInfo - show warning infomation in a row.
