From 7f255d943a46607a15a290681ab7a1c6f77f716f Mon Sep 17 00:00:00 2001 From: Scott Olson Jr Date: Mon, 18 Mar 2019 17:28:35 -0700 Subject: [PATCH] Create rowaction.md --- .../scriptlinkstandard.objects/rowaction.md | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 docs/api/scriptlinkstandard.objects/rowaction.md 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)