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

# IRect

> IRect represents a rectangle in ABBYY FlexiCapture scripts, exposing left, top, right, and bottom pixel coordinates plus a ToString method.

## What it does

Represents a rectangle.

## Methods

| **Definition**      | **Description**                                                            |
| ------------------- | -------------------------------------------------------------------------- |
| ToString() : string | Represents a rectangle as a string of the form "\[left,top,right,bottom]". |

## Properties

| **Name** | **Type** | **Access** | **Description**                    |
| -------- | -------- | ---------- | ---------------------------------- |
| Bottom   | int      | Read-only  | The coordinate of the bottom edge. |
| Left     | int      | Read-only  | The coordinate of the left edge.   |
| Right    | int      | Read-only  | The coordinate of the right edge.  |
| Top      | int      | Read-only  | The coordinate of the top edge.    |

<Note>
  The above coordinates are in pixels.
</Note>
