Label Date Result

Defined in namespace Scandit.DataCapture.Label.Data

LabelDate
class LabelDate : IDisposable

Added in version 8.2.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
int Day { get; }

Added in version 8.2.0

Month
int Month { get; }

Added in version 8.2.0

Year
int Year { get; }

Added in version 8.2.0

DayString
string DayString { get; }

Added in version 8.2.0

The day in String form.

MonthString
string MonthString { get; }

Added in version 8.2.0

The month in String form.

YearString
string YearString { get; }

Added in version 8.2.0

The year in String form.