> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# NamedValue

> Name and value string pair in the FlexiLayout language, with Name and Value accessor methods and equality operators for comparing two named values.

A tuple of two strings where the first string is the name of a value and the second string is the value itself.

## Constructors

| Method                                    | Description                                          |
| :---------------------------------------- | :--------------------------------------------------- |
| `NamedValue( String name, String value )` | Creates a named value with the given name and value. |

## Operators

| Opertors   | Description                                                                               |
| :--------- | :---------------------------------------------------------------------------------------- |
| `==`, `!=` | Checks whether two variables of type `NamedValue` match. Returns a value of type `Logic`. |

## Methods

| Method           | Description                           |
| :--------------- | :------------------------------------ |
| `String Name()`  | Returns the name of the named value.  |
| `String Value()` | Returns the value of the named value. |
