> ## 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.

# IRegistrationProperties

> IRegistrationProperties manages the registration property collection in Scanning Station scripts — add, insert, delete, and look up properties by name.

## What it does

A collection of [IRegistrationProperty](/flexi-capture/scanning-station/shared/scripts/registration-prop) objects.

See more in the [Working with collections](/flexi-capture/scanning-station/scripts-main#collections) section.

## Methods

| **Definition**                                                                                                                | **Description**                                                 |
| ----------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------- |
| Has (name: string) : bool                                                                                                     | Checks whether the specified property exists                    |
| Add (name: string) : [IRegistrationProperty](/flexi-capture/scanning-station/shared/scripts/registration-prop)                | Adds a new registration property                                |
| InsertAt (name: string, pos: int) : [IRegistrationProperty](/flexi-capture/scanning-station/shared/scripts/registration-prop) | Inserts the specified registration property at a given position |
| Delete (name: string)                                                                                                         | Deletes a registration property with the specified name         |
| DeleteAt (pos: int)                                                                                                           | Deletes a registration property from the specified position     |
| DeleteAll ( )                                                                                                                 | Deletes all registration properties                             |

## Properties

| **Name**             | **Type** | **Access** | **Description**    |
| -------------------- | -------- | ---------- | ------------------ |
| Value (name: string) | string   | Read-only  | The property value |
