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++
HRESULT VolumeRefreshingDate( LicenseCounterTypeEnum CounterType, int* Year, int* Month, int* Day );
C#
void VolumeRefreshingDate( LicenseCounterTypeEnum CounterType, out int Year, out int Month, out int Day );
Visual Basic .NET
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. 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.
See also
9/17/2024 3:14:41 PM