Skip to content

Commit

Permalink
Create rowaction.md
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-rcs authored Mar 19, 2019
1 parent a9e3d3e commit 7f255d9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/api/scriptlinkstandard.objects/rowaction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
theme: cayman
layout: default
title: RowAction Class
---

# RowAction

Namespace: [ScriptLinkStandard.Objects](./)

Assemblies: ScriptLinkStandard.dll

Defines the RowAction class.

``` c#
public class RowAction
```

## Examples

The example below shows the use of RowAction to set the RowAction property of a RowObject.

```c#
RowObject rowObject = new RowObject();
rowObject.RowAction = RowAction.Add;
```

## Properties

| Properties | Code | Description |
|:-----------|:-----|:------------|
| Add | "ADD" | Sets the valid Add value for a RowAction. |
| Delete | "DELETE" | Sets the valid Delete value for a RowAction. |
| Edit | "EDIT" | Sets the valid Edit value for a RowAction. |
| None | "" | Sets the valid None value for a RowAction. |

## See Also

* [OptionObject](./optionobject.md)
* [OptionObject2](./optionobject2.md)
* [OptionObject2015](./optionobject2015.md)

0 comments on commit 7f255d9

Please sign in to comment.