Access and configure property values. More...
Public Member Functions | |
| object | Get (Property property) |
| Gets the value of a property. | |
| object | Get (string propertyName) |
| Gets the value of a property. | |
| T | Get< T > (TypedProperty< T > property) |
| Gets the value of a property. | |
| void | Set (string propertyName, object value) |
| Sets the value of a property. | |
| void | Set< T > (TypedProperty< T > property, T value) |
| Sets the value of a property. | |
Properties | |
| IEnumerable< Property > | Properties [get] |
| Gets the properties in a project item or node component. | |
Access and configure property values.
Gets the value of a property.
| property | The property whose value you want to get. |
Examples
To get the values of all properties in a node:
Gets the value of a property.
| propertyName | The name of the property whose value you want to get. |
Examples
To get the value of a property in a node using the name of the property:
| T Get< T > | ( | TypedProperty< T > | property | ) |
Gets the value of a property.
| T | The type of the property whose value you want to get. |
| property | The property whose value you want to get. |
Examples
To get the value of a property in a resource:
Sets the value of a property.
| propertyName | The name of the property whose value you want to set. |
| value | The value to which you want to set the property. |
Examples
To set the values of properties in triggers and actions using the names of the properties:
Sets the value of a property.
| T | The type of the property whose value you want to set. |
| property | The property whose value you want to set. |
| value | The value to which you want to set the property. |
Examples
To set the value of a property in a node to a resource:
|
get |
Gets the properties in a project item or node component.