Label Date Result

Defined under the namespace Scandit.Datacapture.Label

LabelDateResult
class LabelDateResult

Added in version 7.2.0

day
get day(): number | null

Added in version 7.2.0

When running on Android, the parsed day starts on 1 and can be null if the parsing fails. When running on iOS, the parsed day starts on 1 and if the parsing fails, -1 is returned.

month
get month(): number | null

Added in version 7.2.0

When running on Android, the parsed month starts on 1 for January. Can be null if the parsing fails. When running on iOS, the parsed month starts on 1 for January. If the parsing fails, -1 is returned.

year
get year(): number | null

Added in version 7.2.0

When running on Android, the parsed year starts on 1. Can be null if the parsing fails. When running on iOS, the parsed year starts on 1. If the parsing fails, -1 is returned.

dayString
get dayString(): string

Added in version 7.2.0

The day in String form.

monthString
get monthString(): string

Added in version 7.2.0

The month in String form.

yearString
get yearString(): string

Added in version 7.2.0

The year in String form.