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

# VolumeRefreshingDate Method of the License Object

This property provides access to the date on which the license limits in a number of processed pages will be renewed.

## Syntax

### C++

```cpp theme={null}
HRESULT VolumeRefreshingDate(
  LicenseCounterTypeEnum    CounterType,
  int*                          Year,
  int*                          Month,
  int*                          Day
);
```

### C\#

```csharp theme={null}
void VolumeRefreshingDate(
  LicenseCounterTypeEnum    CounterType,
  out int                         Year,
  out int                         Month,
  out int                         Day
);
```

### Visual Basic .NET

```vb theme={null}
Sub VolumeRefreshingDate( _
  CounterType As LicenseCounterTypeEnum, _
  ByRef Year As Integer, _
  ByRef Month As Integer, _
  ByRef Day As Integer _
)
```

## Parameters

CounterType

\[in] This variable specifies the type of units used by the ABBYY FineReader Engine license to limit the number of operations. The only available type is LCT\_Pages of the [LicenseCounterTypeEnum](/fine-reader/engine/api-reference/enumerations/licensecountertypeenum). If this parameter has a value other than LCT\_Pages, an error will be returned. If your license limits the number of processed characters, but you specified LCT\_Pages, the method will return 0 for the date, month, and year.

Year

\[out] A pointer to the int variable that receives the renewal year.

Month

\[out] A pointer to the int variable that receives the renewal month.

Day

\[out] A pointer to the int variable that receives the renewal day.

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

[License](/fine-reader/engine/api-reference/license-related-objects/license)

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