Initializes a new instance of the IEnumerable class.
Namespace: MindFusion.Common.Collections
File: IEnumerable.js
SyntaxJavaScript
Copy Code
|
|---|
function IEnumerable ([items]) |
Type: Array
Array. The underlying array data structure of the collection.
RemarksYou are not expected to call directly the IEnumerable constructor. Instead, derive from it or initialize one of the derived calsses: List, ObservableCollection etc.
ExampleThe following sample creates a new instance of the Menu class and adss one MenuItem to it. The items collection of the Menu class derives from IEnumerable.
JavaScript
Copy Code
|
|---|
var menu = new ui.Menu(document.getElementById("links")); var menuItem = new ui.MenuItem("Start", "index.html"); |
See Also