Description
This property enables or disables the scrolling input from the user. For example, this option is useful when you want to disable input from user either during processing or when the date is read only.
Type
Bool
Syntax
AMADatePicker.ADP.EnableScrolling = true;
Example
using UnityEngine;
using AMADatePicker;
public class DateViewer : MonoBehavior
// Get reference to an ADP instance through the inspector
[SerializeField] private ADP _ADPInstance;
private void Start()
{
_ADPInstance.EnableScrolling = true;
}