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

# IExportBatchItem

> IExportBatchItem represents a document or page in a Scanning Station export script, with SaveAs for saving images and navigation through parent and child items.

## What it does

Represents a document or a page.

## Methods

| **Definition**                                          | **Description**                                                                                                                         |
| ------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| SaveAs (fileName: string, \[optional] options: VARIANT) | Saves document pages (or a page image) to a file. When saving a multi-page document in a single-page format, the exception is returned. |

## Properties

| **Name**                   | **Type**                                                                                                                                                                        | **Access** | **Description**                                                                                                                  |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------- |
| IsDocument (or IsPage)     | bool                                                                                                                                                                            | Read-only  | Checks whether the item is a document (or a page).                                                                               |
| DocumentInfo (or PageInfo) | [IExportDocumentInfo](/flexi-capture/scanning-station/shared/scripts/exportdocument-info)(or [IExportPageInfo](/flexi-capture/scanning-station/shared/scripts/exportpage-info)) | Read-only  | Item properties. If the requested property does not correspond to the item type, the **IsDocument / IsPage** check is performed. |
| Children                   | [IExportBatchItems](/flexi-capture/scanning-station/shared/scripts/batch-items)                                                                                                 | Read-only  | Child items                                                                                                                      |
| Parent                     | IExportBatchItem                                                                                                                                                                | Read-only  | The parent item                                                                                                                  |
| Prev                       | IExportBatchItem                                                                                                                                                                | Read-only  | The previous item                                                                                                                |
| Next                       | IExportBatchItem                                                                                                                                                                | Read-only  | The next item                                                                                                                    |
| Index                      | int                                                                                                                                                                             | Read-only  | The item index in the parent collection                                                                                          |
| Name                       | string                                                                                                                                                                          | Read-only  | The name of the item                                                                                                             |
| ScriptProperties           | [IScriptProperties](/flexi-capture/scanning-station/shared/scripts/script-properties)                                                                                           | Read-only  | Script properties                                                                                                                |
| Attachments                | [IExportAttachments](/flexi-capture/scanning-station/shared/scripts/export-attachments)                                                                                         | Read-only  | Attachments                                                                                                                      |
| IsExported                 | bool                                                                                                                                                                            | Read/write | Specifies whether the item is exported                                                                                           |
