iOSDatePicker.MinimumDate

From Xojo Documentation

Property (As Date )
aiOSDatePicker.MinimumDate = newDateValue
or
DateValue = aiOSDatePicker.MinimumDate

Supported on Mobile (iOS).

The minimum date in the scrolling list. Applicable when Mode is Modes.Date or Modes.DateAndTime.

Notes

Dates before the minimum date still appear in the scrolling list, but cannot be selected.

Sample Code

Limit the minimum date to 100 years in the past:

Var pastDate As Xojo.Core.Date
Var interval As New Xojo.Core.DateInterval
interval.Years = -100
pastDate = Xojo.Core.Date.Now + interval
StartDatePicker.MinimumDate = pastDate