ImageGear .NET v25.2 - Updated
ImageGear.Web.UI Library / ImageGear.Web.UI Namespace / PointCollection class / pointAdded Event

In This Topic
    pointAdded Event
    In This Topic
    Indicates that a new point was added to the collection.
    Syntax
    ASP.NET Ajax JavaScript (Specification) 
    function add_pointAdded(handler : Function)
    function remove_pointAdded(handler : Function)
    ASP.NET Ajax JavaScript (Usage) 
    .add_pointAdded(handler);
    .remove_pointAdded(handler);
    Remarks

    The collection will raise this event whenever one or more points are added to the collection (as the result of a call to the addPoint or addPoints functions).

    The collection will provide a PointEventArgs as the event argument. When the collection raises this event during the addPoint function, it will provide a copy of the new point and the new index of the Point. When the collection raises this event during the addPoints function, it will provide the index of the first new Point and the number of points added.

    See Also