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

# Create <Object> Methods of the Engine Object

The [Engine](/fine-reader/engine/api-reference/engine-object-iengine-interface) object contains a number of methods that create other objects of the ABBYY FineReader Engine objects hierarchy. They all have similar semantics. All newly created objects have default values, or, if a [profile](/fine-reader/engine/guided-tour/advanced-techniques/working-with-profiles) has been previously loaded, the values set by this profile are used.

## Syntax

### C++

```cpp theme={null}
HRESULT Create<ObjectType>( I<ObjectType>** Result );
```

### C\#

```csharp theme={null}
I<ObjectType> Create<ObjectType>();
```

### Visual Basic .NET

```vb theme={null}
Function Create<ObjectType>() As I<ObjectType>
```

## Parameters

Result

\[out] A pointer to I\<ObjectType>\* pointer variable that receives the interface pointer of the created object. \*Result must not be NULL. \*Result is guaranteed to be non-NULL after successful method call.

## Return values

These methods have no specific return values. They return the [standard return values of ABBYY FineReader Engine functions](/fine-reader/engine/api-reference/return-codes).

## Samples

The methods are used in all [code samples and demo tools](/fine-reader/engine/guided-tour/samples).

## See also

[Engine](/fine-reader/engine/api-reference/engine-object-iengine-interface)

[Creation Methods of the Engine Object](/fine-reader/engine/api-reference/engine-object-iengine-interface/creation-methods)
