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

# Component Property of the BusinessCardField Object

This property provides access to a single component of the business card field by the index of this component.

## Syntax

### C++

```cpp theme={null}
HRESULT get_Component(
   int                           Index,
   IBusinessCardFieldComponent** Result
);
```

### C\#

```csharp theme={null}
IBusinessCardFieldComponent get_Component(int Index);
```

### Visual Basic .NET

```vb theme={null}
ReadOnly Property Component(Index As Integer) As IBusinessCardFieldComponent
```

## Parameters

Index

\[in] Specifies the index of the component. Must be in range from 0 to [IBusinessCardField::ComponentsCount](/fine-reader/engine/api-reference/document-related-objects/businesscardfield#componentscount)-1.

Result

\[out, retval] A pointer to IBusinessCardFieldComponent\* pointer variable that receives the interface pointer of the output [BusinessCardFieldComponent](/fine-reader/engine/api-reference/document-related-objects/businesscardfieldcomponent) object.

## Return values

This function 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

[BusinessCardField](/fine-reader/engine/api-reference/document-related-objects/businesscardfield)

[Business Card Recognition](/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation/business-card-recognition)

[Working with Properties](/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/working-with-properties)
