This page contains documentation for advanced Fuse features, so we have taken the liberty to tick the "Show advanced things" checkbox above for you in advance to be able to provide you with some additional information.

Represents a name-value pair, as denoted by name: value in UX expressions.

Implements IObject, which means the NameValuePair can be viewed as an object with a single property.

Implements IArray, which means the NameValuePair can be viewed as an array with a single element.

An IArray containing some NameValuePairs can be converted to an IObject implementation containing all those properties using the ObjectFromArray method.

Location

Namespace
Fuse
Package
Fuse.Common 2.9.1
Show Uno properties and methods

Interface of NameValuePair

ObjectFromArray(IArray) : IObject uno

Creates an IObject implementation from an IArray of NameValuePair. If the items are not NameValuePair instances, or there is a duplicate, they will be added with an indexed key value (unspecified) -- this is to pass through information to later error detection rather than silently discarding it.

Inherited from object

Implemented Interfaces

IObject uno

Represents a key-value object, where the keys can be enumerated and looked up by string name.