DatePickerDialog.IOnDateSetListener.OnDateSet Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
[Android.Runtime.Register("onDateSet", "(Landroid/widget/DatePicker;III)V", "GetOnDateSet_Landroid_widget_DatePicker_IIIHandler:Android.App.DatePickerDialog/IOnDateSetListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void OnDateSet (Android.Widget.DatePicker? view, int year, int month, int dayOfMonth);
[<Android.Runtime.Register("onDateSet", "(Landroid/widget/DatePicker;III)V", "GetOnDateSet_Landroid_widget_DatePicker_IIIHandler:Android.App.DatePickerDialog/IOnDateSetListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member OnDateSet : Android.Widget.DatePicker * int * int * int -> unit
Parameters
- view
- DatePicker
the picker associated with the dialog
- year
- Int32
the selected year
- month
- Int32
the selected month (0-11 for compatibility with
Calendar#MONTH
)
- dayOfMonth
- Int32
the selected day of the month (1-31, depending on month)
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.