ASP.NET Ajax Javascript (Usage) | |
---|---|
var resultVar = instanceOfPointCollection.addPoint(Point); |
Parameters
- point
- The point to add to the collection.
ASP.NET Ajax Javascript (Usage) | |
---|---|
var resultVar = instanceOfPointCollection.addPoint(Point); |
The function will append a copy of the point to the end of the collection. It is similar to the standard JavaScript Array.push() function. This function copies the point so it can guarantee that it calls the pointChanged event at the proper time.
After this function has added the new point to the collection, it will raise the pointAdded event.