Version

Infragistics.Web.UI Namespace (Drag and Drop)

Classes
classDescription
AJAXResponseErrorEventArgs Event arguments object that is passed into the AJAXResponse event handler when the AJAX request fails. It is cancelable so the default error message can be prevented.
AJAXResponseEventArgs Event arguments object that is passed into the AJAXResponse event handler.
AnimationBase A base class that provides the ability to create a custom animation.
DragDropBehavior An object that allows the developer to specify elements and/or UIObjects that should be source elements and/or target elements. This object handles all aspects of a Drag operation and provides hooks such as events that allow the developer to interact with the operation.
DragDropCancelableMoveEventArgs Inherits from DragDropMoveEventArgs , but is used for events that are cancelable.
DragDropCancelEventArgs Inherits from DragDropEventArgs, but is used for events that are cancelable.
DragDropEventArgs Provides data for Drag and Drop events of a DragDropBehavior.
DragDropEvents An object that allows the developer to attach event listeners associated with a Infragistics.Web.UI.DragDropBehavior. All handlers should have the following signature: handler (behavior, evntArgs)
DragDropMoveEventArgs Inherits from DragDropEventArgs and adds additional information such as x and y coordinates.
OpacityAnimation class implementing opacity animations
SlideAnimation  
SlideFadeAnimation Container of properties used by Slide/OpacityAnimations.
Enumerations
EnumerationDescription
AnimationEquationType The type of calculation that an animation will use to determine it's next position..
AnimationSlideDirection Direction used by SlideAnimation. It has 3 members: Vertical, Horizontal and Both. Their values are 1, 2, 3.
DragDropAction The enumerator which is used as parameter for set_defaultDropAction method of $IG.DragDropBehavior. The value of None means that application should implement drop action. Otherwise, action will depend on get_dragDropEffect() of DragDropManager. If dragDropEffect is Copy and value is set to Append, then the copy/clone of source element will be appended to target. If dragDropEffect is Copy and value is set to Insert, then the copy/clone of source element will be inserted in the target as first child. If dragDropEffect is Move and value is set to Append, then source element will be removed from it original location and appended to target. If dragDropEffect is Move and value is set to Insert, then source element will be removed from it original location and inserted into target as first child. So, source element can be dragged and dropped on another target.
DragDropEffects The enumerator which is used as parameter for get_dragDropEffect method of DragDropManager and set_dragDropMode method of $IG.DragDropBehavior. The value of None means no effect. The value of Move means move effect regardless of Ctrl key. The value of Copy means copy effect regardless of Ctrl key. The value of Default means copy effect if Ctrl key is pressed and move is Ctrl key is not pressed.
DragDropPoint  
RelativeLocation Location of target element relative to container.
That contains following integer members:
NotSet (-1), TopLeft (0), TopCenter (1), TopRight (2), TopInfront (3), TopBehind (3), MiddleLeft (8), MiddleCenter (9), MiddleRight (10), MiddleInfront (11), MiddleBehind (12), BottomLeft (16), BottomCenter (17), BottomRight (18), BottomInfront (19), BottomBehind (20), AboveLeft (32), AboveCenter (33), AboveRight (34), AboveInfront (35), AboveBehind (36), BelowLeft (64), BelowCenter (65), BelowRight (66), BelowInfront (67), BelowBehind (68)
See Also