Type | Description | |||
Data as ExDataObject | An ExDataObject object containing formats that the source will provide and, in addition, possibly the data for those formats. If no data is contained in the ExDataObject, it is provided when the control calls the GetData method. The SetData and Clear methods cannot be used here | |||
Effect as Long | A Long set by the target component identifying the action that has been performed (if any), thus allowing the source to take appropriate action if the component was moved (such as the source deleting the data). The possible values are listed in Remarks. | |||
Button as Integer | An integer which acts as a bit field corresponding to the state of a mouse button when it is depressed. The left button is bit 0, the right button is bit 1, and the middle button is bit 2. These bits correspond to the values 1, 2, and 4, respectively. It indicates the state of the mouse buttons; some, all, or none of these three bits can be set, indicating that some, all, or none of the buttons are depressed. | |||
Shift as Integer | An integer which acts as a bit field corresponding to the state of the SHIFT, CTRL, and ALT keys when they are depressed. The SHIFT key is bit 0, the CTRL key is bit 1, and the ALT key is bit 2. These bits correspond to the values 1, 2, and 4, respectively. The shift parameter indicates the state of these keys; some, all, or none of the bits can be set, indicating that some, all, or none of the keys are depressed. For example, if both the CTRL and ALT keys were depressed, the value of shift would be 6. | |||
X as OLE_XPOS_PIXELS | A single that specifies the current X location of the mouse pointer. The X value is always expressed in container coordinates. | |||
Y as OLE_YPOS_PIXELS | A single that specifies the current Y location of the mouse pointer. The Y value is always expressed in container coordinates. | |||
State as Integer | An integer that corresponds to the transition state of the control being dragged in relation to a target form or control. The possible values are listed in Remarks. |
The Background( exScheduleOLEDropPosition) property specifies the visual appearance of the line to be shown when the cursor is hovering the schedule part of the control, during an OLE drag and drop operation.
The settings for effect are:
The settings for state are:
Note If the state parameter is 1, indicating that the mouse pointer has left the
target, then the x and y parameters will contain zeros.
The source component should always mask values from the effect parameter to ensure
compatibility with future implementations of ActiveX components. As a precaution against
future problems, drag sources and drop targets should mask these values appropriately
before performing any comparisons.
For example, a source component should not compare an effect against, say,
exOLEDropEffectCopy, such as in this manner:
If Effect = exOLEDropEffectCopy...
Instead, the source component should mask for the value or values being sought, such as
this:
If Effect And exOLEDropEffectCopy = exOLEDropEffectCopy...
-or-
If (Effect And exOLEDropEffectCopy)...
This allows for the definition of new drop effects in future versions while preserving
backwards compatibility with your existing code.
The control supports only manual OLE drag and drop events.
// OLEDragOver event is not supported. Use the DragEnter,DragLeave,DragOver, DragDrop ... events. // OLEDragOver event is not supported. Use the DragEnter,DragLeave,DragOver, DragDrop ... events. |
private void OLEDragOver(object sender, AxEXSCHEDULELib._IScheduleEvents_OLEDragOverEvent e) { } void OnOLEDragOver(LPDISPATCH Data,long FAR* Effect,short Button,short Shift,long X,long Y,short State) { } void __fastcall OLEDragOver(TObject *Sender,Exschedulelib_tlb::IExDataObject *Data,long * Effect,short Button,short Shift,int X,int Y,short State) { } procedure OLEDragOver(ASender: TObject; Data : IExDataObject;var Effect : Integer;Button : Smallint;Shift : Smallint;X : Integer;Y : Integer;State : Smallint); begin end; procedure OLEDragOver(sender: System.Object; e: AxEXSCHEDULELib._IScheduleEvents_OLEDragOverEvent); begin end; begin event OLEDragOver(oleobject Data,long Effect,integer Button,integer Shift,long X,long Y,integer State) end event OLEDragOver Private Sub OLEDragOver(ByVal sender As System.Object, ByVal e As AxEXSCHEDULELib._IScheduleEvents_OLEDragOverEvent) Handles OLEDragOver End Sub Private Sub OLEDragOver(ByVal Data As EXSCHEDULELibCtl.IExDataObject,Effect As Long,ByVal Button As Integer,ByVal Shift As Integer,ByVal X As Single,ByVal Y As Single,ByVal State As Integer) End Sub Private Sub OLEDragOver(ByVal Data As Object,Effect As Long,ByVal Button As Integer,ByVal Shift As Integer,ByVal X As Long,ByVal Y As Long,ByVal State As Integer) End Sub LPARAMETERS Data,Effect,Button,Shift,X,Y,State PROCEDURE OnOLEDragOver(oSchedule,Data,Effect,Button,Shift,X,Y,State) RETURN |
<SCRIPT EVENT="OLEDragOver(Data,Effect,Button,Shift,X,Y,State)" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function OLEDragOver(Data,Effect,Button,Shift,X,Y,State) End Function </SCRIPT> Procedure OnComOLEDragOver Variant llData Integer llEffect Short llButton Short llShift OLE_XPOS_PIXELS llX OLE_YPOS_PIXELS llY Short llState Forward Send OnComOLEDragOver llData llEffect llButton llShift llX llY llState End_Procedure METHOD OCX_OLEDragOver(Data,Effect,Button,Shift,X,Y,State) CLASS MainDialog RETURN NIL // OLEDragOver event is not supported. Use the DragEnter,DragLeave,DragOver, DragDrop ... events. function OLEDragOver as v (Data as OLE::Exontrol.Schedule.1::IExDataObject,Effect as N,Button as N,Shift as N,X as OLE::Exontrol.Schedule.1::OLE_XPOS_PIXELS,Y as OLE::Exontrol.Schedule.1::OLE_YPOS_PIXELS,State as N) end function function nativeObject_OLEDragOver(Data,Effect,Button,Shift,X,Y,State) return |