-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |