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

# FindComponent Method of the BusinessCardField Object

This method provides access to a single component of the business card field by the type of this component. The method returns null, if there is no component of the specified type.

## Syntax

### C++

```cpp theme={null}
HRESULT FindComponent(
   BusinessCardFieldComponentTypeEnum Type,
   IBusinessCardFieldComponent**      Result
);
```

### C\#

```csharp theme={null}
IBusinessCardFieldComponent FindComponent( BusinessCardFieldComponentTypeEnum Type );
```

### Visual Basic .NET

```vb theme={null}
Function FindComponent(Type As BusinessCardFieldComponentTypeEnum) As IBusinessCardFieldComponent
```

## Parameters

Type

\[in] Specifies the type of the component. The types of available components depend on the type of the current field. If the specified type of the component is not available for the current field, an error occurs. See the description of the [BusinessCardFieldComponentTypeEnum](/fine-reader/engine/api-reference/enumerations/businesscardfieldcomponenttypeenum) constants for details.

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. If there is no component of the specified type, NULL is returned.

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