\section{\class{wxFileDropTarget}}\label{wxfiledroptarget} A drop target which accepts files (dragged from File Manager or Explorer). \wxheading{Derived from} \helpref{wxDropTarget}{wxdroptarget} \wxheading{Include files} \wxheading{See also} \helpref{Drag and drop overview}{wxdndoverview}, \helpref{wxDropSource}{wxdropsource}, \helpref{wxDropTarget}{wxdroptarget}, \helpref{wxTextDropTarget}{wxtextdroptarget} \latexignore{\rtfignore{\wxheading{Members}}} \membersection{wxFileDropTarget::wxFileDropTarget}\label{wxfiledroptargetwxfiledroptarget} \func{}{wxFileDropTarget}{\void} Constructor. \membersection{wxFileDropTarget::GetFormatCount}\label{wxfiledroptargetgetformatcount} \func{virtual size\_t}{GetFormatCount}{\void} See \helpref{wxDropTarget::GetFormatCount}{wxdroptargetgetformatcount}. This function is implemented appropriately for files. \membersection{wxFileDropTarget::GetFormat}\label{wxfiledroptargetgetformat} \constfunc{virtual wxDataFormat}{GetFormat}{\param{size\_t }{n}} See \helpref{wxDropTarget::GetFormat}{wxdroptargetgetformat}. This function is implemented appropriately for files. \membersection{wxFileDropTarget::OnDrop}\label{wxfiledroptargetondrop} \func{virtual bool}{OnDrop}{\param{long }{x}, \param{long }{y}, \param{const void }{*data}, \param{size\_t }{size}} See \helpref{wxDropTarget::OnDrop}{wxdroptargetondrop}. This function is implemented appropriately for files, and calls \helpref{wxFileDropTarget::OnDropFiles}{wxfiledroptargetondropfiles}. \membersection{wxFileDropTarget::OnDropFiles}\label{wxfiledroptargetondropfiles} \func{virtual bool}{OnDropFiles}{\param{long }{x}, \param{long }{y}, \param{size\_t }{nFiles}, \param{const char * const}{files[]}} Override this function to receive dropped files. \wxheading{Parameters} \docparam{x}{The x coordinate of the mouse.} \docparam{y}{The y coordinate of the mouse.} \docparam{nFiles}{The number of files being dropped.} \docparam{files}{An array of filenames.} \wxheading{Return value} Return TRUE to accept the data, FALSE to veto the operation.