diff --git a/docs/api/scriptlinkstandard.objects/rowaction.md b/docs/api/scriptlinkstandard.objects/rowaction.md new file mode 100644 index 0000000..32d4a64 --- /dev/null +++ b/docs/api/scriptlinkstandard.objects/rowaction.md @@ -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)