Overload List

  NameDescription
AspectDraggable()()()
Default constructor, adds no Event Handler for the dropped method, uses all "default properties"
AspectDraggable(EventHandler)
Constructor taking event handler for the Dropped event
AspectDraggable(EventHandler, Rectangle)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item.
AspectDraggable(EventHandler, Rectangle, Boolean)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item and a boolean value which says if the dragging operation should be reverted when the user lets go of the widget.
AspectDraggable(EventHandler, Rectangle, Boolean, Boolean)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item, a boolean value which says if the dragging operation should be reverted when the user lets go of the widget and a boolean value which if true says that the logic shouldn't check for hits on AspectDroppable widgets. To set this value to true might seriously optimize the JavaScript on the client-side.
AspectDraggable(EventHandler, Rectangle, Boolean, Boolean, Decimal)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item, a boolean value which says if the dragging operation should be reverted when the user lets go of the widget, a boolean value which if true says that the logic shouldn't check for hits on AspectDroppable widgets and a decimal value which must be between 0.0 and 1.0 which defines the amount of transparency the widget will have while being dragged around on the client.
AspectDraggable(EventHandler, Rectangle, Boolean, Boolean, Decimal, String)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item, a boolean value which says if the dragging operation should be reverted when the user lets go of the widget, a boolean value which if true says that the logic shouldn't check for hits on AspectDroppable widgets, a decimal value which must be between 0.0 and 1.0 which defines the amount of transparency the widget will have while being dragged around on the client, a boolean value stating if the widget should "animate" when dropped on an accepting AspectDroppable and a "handle" which if non-null defines a DOM element ID by which the widget will be draggable from.
AspectDraggable(EventHandler, Rectangle, Boolean, Boolean, Decimal, Boolean, Control)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item, a boolean value which says if the dragging operation should be reverted when the user lets go of the widget, a boolean value which if true says that the logic shouldn't check for hits on AspectDroppable widgets, a decimal value which must be between 0.0 and 1.0 which defines the amount of transparency the widget will have while being dragged around on the client, a boolean value stating if the widget should "animate" when dropped on an accepting AspectDroppable and a "handle" which if non-null defines a Control by which the widget will be draggable from.
AspectDraggable(EventHandler, Rectangle, Boolean, Boolean, Decimal, String, String)
Constructor taking event handler for the Dropped event in addition to a Rectangle which defines the boundaries of where the user can drag the item, a boolean value which says if the dragging operation should be reverted when the user lets go of the widget, a boolean value which if true says that the logic shouldn't check for hits on AspectDroppable widgets, a decimal value which must be between 0.0 and 1.0 which defines the amount of transparency the widget will have while being dragged around on the client, a boolean value stating if the widget should "animate" when dropped on an accepting AspectDroppable, a "handle" which if non-null defines a DOM element ID by which the widget will be draggable from and an "ID" to pass into the Dropped event handler when widget is dropped.

See Also