Creates an object array and stores the result.
Purpose
Creates an object array and stores the result. This macro never outputs to the report directly.
Compatibility
The macro can be used in all input document types and in Report Studio.
Usage
Any values in quotes are treated as strings. If you want numbers (or booleans) for example, do not enclose the values in strings. You MAY still treat a number as a string by use the quotes. For example: Things: [ { "Number" : 567, "NumberButReallyAString" : "123", "Letter" : "C", "Boolean" : true } ]. Use in conjunction with the following macros: [Object.Type:], [Object.Property:], [Object.ArrayAcount:], [Object:] and [Array.Count:].
Mandatory (2)
| Parameter | Type | Purpose | Options | Default |
| String | The variable to store the object as. | N/A | N/A | |
| JArray | The object array. Should be specified inside <json></json> to avoid issues with items containing quotes. Alternatively you can omit the JSON tags and use backticks (`) around the parameter value. | N/A | N/A |
Behaviour (5)
| Parameter | Type | Presence | Purpose | Options | Default |
| Boolean | Optional | Should NCalc expression evaluation throw error on Overflow |
|
true | |
| String | Optional | The condition that must be true in order for the macro to be executed/evaluated. Must either evaluate to true or false, for example: "3+5=8" or "contains('abcd', 'z'). | N/A | true | |
| MacroMode | Optional | The mode in which variables are stored. In the legacy mode (default for Schedules), the variable created is a string and formatted. In the normal mode (default for Report Studio), the output variable is stored as a strongly-typed theObject, e.g. an Int32 or a List |
|
Legacy | |
| ObfuscationType | Optional | Obfuscation type. Use obfuscation to write reports where sensitive data is hidden. When used, ReportMagic guarantees that the same input string will map to the same output string for the whole of the report (but the next time the report runs, it will most likely map to a different value). If you use obfuscation, the property in your macro will not show up and instead, you will see a fake item of the obfuscation type chosen. |
|
None | |
| String | Optional | If specified, adds a warning message for this macro. This is processed as an NCalc, and the warning message will ALWAYS be present and will be the value of the evaluated NCalc expression. | N/A | N/A |
Output (3)
| Parameter | Type | Presence | Purpose | Options | Default |
| String | Mandatory | The variable to store the object as. | N/A | N/A | |
| String | Optional | The text to display should the macro fail to execute. Note that a poorly-specified macro (e.g. omitting mandatory parameters) will still result in an error message. | N/A | N/A | |
| String | Optional | The name of a variable to create should the macro fail to execute. The variable will be a text variable, and will contain either the failure text (only if the failureText parameter is set), otherwise it will contain the exception / failure message. | N/A | N/A |
General (5)
| Parameter | Type | Presence | Purpose | Options | Default |
| JArray | Mandatory | The object array. Should be specified inside <json></json> to avoid issues with items containing quotes. Alternatively you can omit the JSON tags and use backticks (`) around the parameter value. | N/A | N/A | |
| String | Optional | Add a comment to make your document template more readable. The comment is discarded in the output document. | N/A | N/A | |
| ExecutionResult | Optional | If specified, asserts the expected execution result of the macro. The macro executes normally; if the actual result matches the desired value, the result is converted to Success. If the actual result does not match, the result is converted to MacroError with a descriptive message. This is primarily used for testing and diagnostic purposes. Valid values are: Unknown, Success, MacroError, WorkerStopped, Running, Warning, NeverRun, Cancelled, Pending, Paused, SystemError, Deferred, Stopped. |
|
N/A | |
| String | Optional | If specified, asserts the expected output type of the macro result. The macro executes normally; if the actual type does not match, a macro error is generated. Requires 'storeAs', 'storeAsHidden', or 'storeFormattedValueAs' to be set for typed validation. Valid types include CLR names (e.g. Int32, Int64, Single, Double, Boolean, String, JArray, JObject) and C# keyword aliases (e.g. int, long, float, double, bool, string, uint, ulong, short, ushort, byte, sbyte, decimal, char, object). The special value 'Number' matches any numeric type. | N/A | N/A | |
| String | Optional | If specified, asserts the expected output value of the macro result. The macro executes normally; if the actual value does not match, a macro error is generated. When 'storeAs' or 'storeAsHidden' is set, the stored variable value is compared. Otherwise, the document output text is compared. | N/A | N/A |
Examples (4)
Example 1
This example creates a simple object array specified using the JSON tags:
[Array: value=<json>[ "a", false, { "b" : false } ]</json>, =>TheArray]Example 2
This example creates a simple object array specified using backticks around the 'value' parameters value, instead of JSON tags:
[Array: value=`[ "a", false, { "b" : false } ]`, =>TheArray]Example 3
This example creates a simple object array with 3 items, then uses the [Array.Count:] macro to count the items and store the result in a variable:
[Array: value=`[ "a", 100, { "b" : false } ]`, =>TheArray]
[Array.Count: value={=TheArray}, =>TheArrayCount]Example 4
A combination of several [Object.XXX:] and [Array.XXX:] macros:
[Object: value=<json>{"a":"X","b":2, "c": { "d": [false, true] } }</json>, =>TheObject]
[Object.Property: value=<json>{"a":"X","b":2, "c": { "d": [false, true] } }</json>, jsonPath="$.a", =>A]
[Object.Property: value={=TheObject}, jsonPath = "$.b",=>B]
[Object.Property: value={=TheObject}, jsonPath = "$.c",=>C]
[Object.ArrayCount: value={=TheObject}, jsonPath = "$.c.d",=>DCount]
[Object.Property: value={=TheObject}, jsonPath = "$.c.d",=>D]
[Array.Count: value={=D}, =>DCount]
[Object.Property: value={=TheObject}, jsonPath = "$.c.d[0]",=>D0]
[Object.Type: value={=TheObject}, jsonPath = "$.c.d[0]",=>D0Type]
[Calculate: value=`if(D0, 'it went wrong', 'all is well')`]
[Array: value=<json>[true, 3, { "a": null }]</json>, =>TheArray]
[Array.Count: value={=TheArray}, =>TheArrayCount]