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

# Move Method of the Block Object

This method allows you to move the block region. The region is defined by coordinates of its rectangles (in pixels) upon the deskewed [black-and-white](/fine-reader/engine/guided-tour/advanced-techniques/working-with-images#black-and-white) plane of the corresponding image.

## Syntax

### C++

```cpp theme={null}
HRESULT Move(
  int DeltaX,
  int DeltaY
);
```

### C\#

```csharp theme={null}
void Move(
  int DeltaX,
  int DeltaY
);
```

### Visual Basic .NET

```vb theme={null}
Sub Move( _
  DeltaX As Integer, _
  DeltaY As Integer _
)
```

## Parameters

DeltaX

\[in] Horizontal offset in pixels.

DeltaY

\[in] Vertical offset in pixels.

## Return values

This method has no specific return values. It returns the [standard return values of ABBYY FineReader Engine functions](/fine-reader/engine/api-reference/return-codes).

## See also

[Block](/fine-reader/engine/api-reference/layout-related-objects/block)
