Search
DateTime Class
Remarks See Also
 






A Javascript Date object wrapper that extends the functionality of the JavaScript Date object.

Namespace: MindFusion.Scheduling
File: DateTime.js

 Syntax

JavaScript  Copy Code

// class
DateTime.prototype = {}

 Remarks

It has all the capabilities of the Date class, plus it adds several helper methods to manipulate its date and time components.All date and time objects in the calendar are represented by this class.

 Example

The following code creates a DateTime object with the value of the present date:

JavaScript  Copy Code

var p = MindFusion.Scheduling;

var date = p.DateTime.today();

 Inheritance Hierarchy

MindFusion.Scheduling.DateTime

 See Also