Lines Matching refs:hour
3 The **TimePicker** component allows users to select a time (with the hour and minute) from the give…
19 Creates a time picker, which is in 24-hour format by default.
59 …to display time in 24-hour format. When the display time is in 12-hour format, the AM/PM zone does…
69 | value | boolean | Yes | Whether the display time is in 24-hour format.<br>Default value: **fals…
149 …hour**, **minute**, and **second** parameters is supported.<br>Default value:<br>**hour**: In the …
181 | value | [TimePickerResult](#timepickerresult)| Yes | Time in 24-hour format.|
185 Describes a time in 24-hour format.
193 | hour | number | No | No | Hour portion of the selected time.<br>Value range: [0…
199 This example implements a time picker that allows users to switch between 12-hour and 24-hour forma…
221 if(value.hour >= 0) {
222 this.selectedTime.setHours(value.hour, value.minute)