GetEndDate Method of the Tax Object
This method checks if there is an end date for the tax and returns its year, month, and day. If the tax has no end date, this method returns special values.
Syntax
Visual Basic .NET
Function GetEndDate( _ ByRef Year As Integer, _ ByRef Month As Integer, _ ByRef Day As Integer _ ) As HasEndDay
C++
HRESULT GetEndDate( int* Year, int* Month, int* Day, VARIANT_BOOL* HasEndDay );
Parameters
- Year
- [out] A pointer to the variable that receives the year number. If the end date is not set, this value is -1.
- Month
- [out] A pointer to the variable that receives the month number. If the end date is not set, this value is -1.
- Day
- [out] A pointer to the variable that receives the day number. If the end date is not set, this value is -1.
- HasEndDay
- [out, retval] A pointer to the Boolean variable that receives a value indicating whether the end date is set (True) or not (False).
Return values
This method has no specific return values. It returns the standard return values of ABBYY FlexiCapture SDK functions.
See also
8/15/2023 1:19:30 PM