public bool beforeInvalidDrop(DragDrop target) { throw new Exception(); }
public bool beforeInvalidDrop(DragDrop target, HtmlDomEventArgs e, string id) { throw new Exception(); }
public static object getLocation(DragDrop oDD) { throw new Exception(); }
public bool beforeDragOver(DragDrop target, HtmlDomEventArgs e) { throw new Exception(); }
/// <summary> /// Returns true if the specified dd target is a legal target for /// the specifice drag obj /// dd obj /// </summary> /// <param name="the">drag obj</param> /// <param name="the2">target</param> /// <returns>boolean</returns> public extern static void isLegalTarget(DragDrop the, DragDrop the2);
/// <summary> /// Returns a Region object containing the drag and drop element's position /// and size, including the padding configured for it /// location for /// the element occupies, including any padding /// the instance is configured for. /// </summary> /// <param name="oDD">the drag and drop object to get the</param> /// <returns>Ext.lib.Region</returns> public extern static void getLocation(DragDrop oDD);
public void afterDragOut(DragDrop target, HtmlDomEventArgs e) { throw new Exception(); }
/// <summary> /// Returns the drag and drop instances that are in all groups the /// passed in instance belongs to. /// </summary> /// <param name="p_oDD">the obj to get related data for</param> /// <returns>DragDrop[]</returns> public extern static void getRelated(DragDrop p_oDD);
public static void regDragDrop(DragDrop oDD) { throw new Exception(); }
public static void regDragDrop(DragDrop oDD, string sGroup) { throw new Exception(); }
public static bool isLegalTarget(DragDrop the, DragDrop the2) { throw new Exception(); }
public static DragDrop getRelated(DragDrop p_oDD, bool bTargetsOnly) { throw new Exception(); }
public static DragDrop getRelated(DragDrop p_oDD) { throw new Exception(); }
/// <summary> /// Each DragDrop instance must be registered with the DragDropMgr. /// This is executed in DragDrop.init() /// </summary> /// <param name="oDD">the DragDrop object to register</param> /// <returns></returns> public extern static void regDragDrop(DragDrop oDD);
public void afterDragOver(DragDrop target) { throw new Exception(); }
/// <summary> /// Each DragDrop instance must be registered with the DragDropMgr. /// This is executed in DragDrop.init() /// </summary> /// <param name="oDD">the DragDrop object to register</param> /// <param name="sGroup">the name of the group this element belongs to</param> /// <returns></returns> public extern static void regDragDrop(DragDrop oDD, string sGroup);
public void afterDragOver(DragDrop target, HtmlDomEventArgs e, string id) { throw new Exception(); }
/// <summary> /// Returns the drag and drop instances that are in all groups the /// passed in instance belongs to. /// </summary> /// <param name="p_oDD">the obj to get related data for</param> /// <param name="bTargetsOnly">if true, only return targetable objs</param> /// <returns>DragDrop[]</returns> public extern static void getRelated(DragDrop p_oDD, bool bTargetsOnly);
public bool beforeDragEnter(DragDrop target, HtmlDomEventArgs e, string id) { throw new Exception(); }
/// <summary> /// Helper function for getting the best match from the list of drag /// and drop objects returned by the drag and drop events when we are /// in INTERSECT mode. It returns either the first object that the /// cursor is over, or the object that has the greatest overlap with /// the dragged element. /// targeted /// </summary> /// <param name="dds">The array of drag and drop objects</param> /// <returns>DragDrop</returns> public extern static void getBestMatch(DragDrop[] dds);
public bool beforeDragOver(DragDrop target) { throw new Exception(); }
/// <summary> /// Fired when this object is clicked /// @method handleMouseDown /// @param {Event} e /// @param {Ext.dd.DragDrop} oDD the clicked dd object (this dd obj) /// @private /// </summary> public void handleMouseDown(object e, DragDrop oDD) { }
public static DragDrop getBestMatch(DragDrop dds) { throw new Exception(); }