Label Date Result

Defined under the namespace Scandit.Datacapture.Label

LabelDateResult
class LabelDateResult

Added in version 8.0.0

Represents the result of parsing a date from captured text using a LabelDateFormat. Contains the individual date components (day, month, year) in both numeric and string formats.

This class is returned when date text fields are successfully parsed according to the configured date format patterns.

day
get day(): number | null

Added in version 8.0.0

month
get month(): number | null

Added in version 8.0.0

year
get year(): number | null

Added in version 8.0.0

dayString
get dayString(): string

Added in version 8.0.0

The day in String form.

monthString
get monthString(): string

Added in version 8.0.0

The month in String form.

yearString
get yearString(): string

Added in version 8.0.0

The year in String form.