Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Information Technology committed Apr 2, 2019
2 parents 7e444c9 + 40683b8 commit 2199b62
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions docs/api/scriptlinkstandard.helpers/scriptlinkhelpers.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@ The following methods are also available as methods on the various objects.
| AddRowObject(IFormObject, IRowObject) | formObject.AddRowObject(IRowObject) |
| AddRowObject(IFormObject, string, string) | formObject.AddRowObject(string, string) |
| AddRowObject(IFormObject, string, string, string) | formObject.AddRowObject(string, string) |
| Clone(IOptionObject) | optionObject.Clone() |
| Clone(IOptionObject2) | optionObject.Clone() |
| Clone(IOptionObject2015) | optionObject.Clone() |
| Clone(IFormObject) | formObject.Clone() |
| Clone(IRowObject) | rowObject.Clone() |
| Clone(IFieldObject) | fieldObject.Clone() |
| DeleteRowObject(IOptionObject, IRowObject) | optionObject.DeleteRowObject(IRowObject) |
| DeleteRowObject(IOptionObject, string) | optionObject.DeleteRowObject(string) |
| DeleteRowObject(IOptionObject2, IRowObject) | optionObject.DeleteRowObject(IRowObject) |
Expand Down
3 changes: 2 additions & 1 deletion docs/api/scriptlinkstandard.objects/fieldobject.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public void GetMyFieldValue_Returns_Y()

| Method | Description |
|:----------------|:------------|
| Clone() | Creates a copy of the FieldObject. |
| GetFieldValue() | Returns the FieldValue of a FieldObject. |
| IsEnabled() | Returns whether the FieldObject is enabled. |
| IsLocked() | Returns whether the FieldObject is locked. |
Expand All @@ -93,7 +94,7 @@ public void GetMyFieldValue_Returns_Y()
| SetFieldValue(string) | Sets the FieldValue of a FieldObject and marks the FieldObject as modified. |
| ToHtmlString(bool) | Returns the FieldObject as an HTML string. The `<html>`, `<head>`, and `<body>` tags can be included if desired. |
| ToJson() | Returns the FieldObject as a JSON string. |
| ToXml() | Returns the OptionObject2015 as an XML string. |
| ToXml() | Returns the FieldObject as an XML string. |

## Explicit Interface Implementations

Expand Down
1 change: 1 addition & 0 deletions docs/api/scriptlinkstandard.objects/formobject.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public void GetMyFieldValue_Returns_Y()
| AddRowObject([RowObject](./rowobject.md)) | Adds a [RowObject](./rowobject.md) to a the FormObject. |
| AddRowObject(string, string) | Adds a [RowObject](./rowobject.md) to a FormObject using supplied RowId and ParentRowId. |
| AddRowObject(string, string, string) | Adds a [RowObject](./rowobject.md) to a FormObject using supplied RowId and ParentRowId and setting the RowAction. |
| Clone() | Creates a copy of the FormObject. |
| DeleteRowObject([RowObject](./rowobject.md)) | Removes a [RowObject](./rowobject.md) from a FormObject. |
| DeleteRowObject(string) | Removes a [RowObject](./rowobject.md) from a FormObject by RowId. |
| GetCurrentRowId() | Returns the ID of the [RowObject](./rowobject.md) in the CurrentRow of a FormObject. |
Expand Down
2 changes: 1 addition & 1 deletion docs/api/scriptlinkstandard.objects/optionobject.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ OptionObject is the original definition of the OptionObject for use with myAvata
| AddFormObject(FormObject) | Adds a FormObject to the OptionObject. |
| AddFormObject(string, bool) | Creates a FormObject with specified FormId and adds to the OptionObject. The second parameter specifies whether the FormObject should be flagged as a Multiple Iteration form. |
| AddRowObject(string, RowObject) | Adds a RowObject to the FormObject with the specified FormId. |
| Clone | Creates a shallow copy of the OptionObject. |
| Clone | Creates a deep copy of the OptionObject. |
| DeleteRowObject(RowObject) | Removes the RowObject from the OptionObject. |
| DeleteRowObject(string) | Removes a RowObject from the OptionObject by specified RowId. |
| DisableAllFieldObjects | Sets all FieldObjects in the OptionObject to disabled. |
Expand Down
2 changes: 1 addition & 1 deletion docs/api/scriptlinkstandard.objects/optionobject2.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ OptionObject2 is a subsequent definition of the OptionObject for use with myAvat
| AddFormObject(FormObject) | Adds a FormObject to the OptionObject2. |
| AddFormObject(string, bool) | Creates a FormObject with specified FormId and adds to the OptionObject2. The second parameter specifies whether the FormObject should be flagged as a Multiple Iteration form. |
| AddRowObject(string, RowObject) | Adds a RowObject to the FormObject with the specified FormId. |
| Clone | Creates a shallow copy of the OptionObject2. |
| Clone | Creates a deep copy of the OptionObject2. |
| DeleteRowObject(RowObject) | Removes the RowObject from the OptionObject2. |
| DeleteRowObject(string) | Removes a RowObject from the OptionObject2 by specified RowId. |
| DisableAllFieldObjects | Sets all FieldObjects in the OptionObject2 to disabled. |
Expand Down
2 changes: 1 addition & 1 deletion docs/api/scriptlinkstandard.objects/optionobject2015.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ To use OptionObject2015 you will need RADplus 2016 Update 17 installed in myAvat
| AddFormObject([FormObject](./formobject.md)) | Adds a [FormObject](./formobject.md) to the OptionObject2015. |
| AddFormObject(string, bool) | Creates a [FormObject](./formobject.md) with specified FormId and adds to the OptionObject2015. The second parameter specifies whether the [FormObject](./formobject.md) should be flagged as a Multiple Iteration form. |
| AddRowObject(string, [RowObject](./rowobject.md)) | Adds a [RowObject](./rowobject.md) to the [FormObject](./formobject.md) with the specified FormId. |
| Clone | Creates a shallow copy of the OptionObject2015. |
| Clone | Creates a deep copy of the OptionObject2015. |
| DeleteRowObject([RowObject](./rowobject.md)) | Removes the [RowObject](./rowobject.md) from the OptionObject2015. |
| DeleteRowObject(string) | Removes a [RowObject](./rowobject.md) from the OptionObject2015 by specified RowId. |
| DisableAllFieldObjects() | Sets all [FieldObjects](./fieldobject.md) in the OptionObject2015 to disabled. |
Expand Down
1 change: 1 addition & 0 deletions docs/api/scriptlinkstandard.objects/rowobject.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public void GetMyFieldValue_Returns_Y()
| AddFieldObject(string, string) | Adds a [FieldObject](./fieldobject.md) to a RowObject using supplied FieldNumber and FieldValue. |
| AddFieldObject(string, string, string, string, string) | Adds a [FieldObject](./fieldobject.md) to a RowObject using supplied FieldNumber and FieldValue and setting the Enabled, Locked, and Required values (e.g., `Y` or `N`). |
| AddFieldObject(string, string, bool, bool, bool) | Adds a [FieldObject](./fieldobject.md) to a RowObject using supplied FieldNumber and FieldValue and setting the Enabled, Locked, and Required values. |
| Clone() | Creates a copy of the RowObject. |
| GetFieldValue(string) | Returns the FieldValue of a [FieldObject](./fieldobject.md) in a RowObject by FieldNumber. |
| IsFieldEnabled(string) | Returns whether a [FieldObject](./fieldobject.md) in a RowObject is enabled by FieldNumber. |
| IsFieldLocked(string) | Returns whether a [FieldObject](./fieldobject.md) in a RowObject is locked by FieldNumber. |
Expand Down

0 comments on commit 2199b62

Please sign in to comment.