Search
Orientation Enumeration
See Also
 






Specifies orientation for calendar elements.

Namespace: MindFusion.Scheduling
File: Enum.js

 Syntax

JavaScript  Copy Code

// enum
Orientation = {}

 Members

  Member name Description

Horizontal

Indicates a horizontal orientation.

Vertical

Indicates a vertical orientation.

 Remarks

The Orientation enumeration is also used by the TimetableSettings.orientation property.

 Example

The following code sets the orientation of items in a ListView to horizontal.

JavaScript  Copy Code
var p = MindFusion.Scheduling;
calendar.listSettings.orientation = p.Orientation.Horizontal;

 See Also