Search
TimetableSettings.setEndTime Method
See Also
 






Sets the end time of the timetable, expressed in minutes since the beginning of the day.

Namespace: com.mindfusion.scheduling
Package: com.mindfusion.scheduling

 Syntax

Java  Copy Code

public void setEndTime (
    Integer value
)

 Parameters

value

An integer value specifying the end time in minutes. The allowed values range from 0 to 2880. Set to null to use the corresponding value from the current theme.

 Remarks

Specifying value for this property which is smaller than the value of getStartTime is permissible. This indicates that the end value represents time from the next day. For example, if getStartTime is set to 600 (10:00 AM) and getEndTime is set to 480 (8:00 AM), then each column in the view represents the time from 10:00 AM until 8:00 AM on the following day. Specifying 1920 (480 + 1440) for the getEndTime yields the same result.

 See Also