OnDragEnter picture event
Related pages:
ENTRY OnDragEnter(IN INT _refId, OUT BOOL _bAllow) ; akcie END OnDragEnter
_refId | For global handler - identifier of target graphic object. |
_bAllow | Defines whether a graphic object is able to process Drop operation. |
ENTRY OnDragEnter (IN INT _refID, OUT BOOL _bAllow) ; test on admissibility of target object _bAllow := @FALSE ; what type of data I have? I can work only with a text IF %IsDragData(0, _DF_TEXT) THEN _bAllow := @TRUE END IF END OnDragEnter
Related pages:
Pridať komentár