Label Date Result
Defined in namespace Scandit.DataCapture.Label.Data
- LabelDateResult
class LabelDateResultAdded in version 7.5.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
intDay { get; }Added in version 7.5.0
The parsed day, starting on 1. Can be null if the parsing fails.
- Month
intMonth { get; }Added in version 7.5.0
The parsed month, starting on 1 for January. Can be null if the parsing fails.
- Year
intYear { get; }Added in version 7.5.0
The parsed year, starting on 1. Can be null if the parsing fails.
- DayString
stringDayString { get; }Added in version 7.5.0
The day in String form.
- MonthString
stringMonthString { get; }Added in version 7.5.0
The month in String form.
- YearString
stringYearString { get; }Added in version 7.5.0
The year in String form.