TXTextControl.FileDroppedEventArgs Object

The event argument object for the fileDropped event.

Introduced: 23.0.

Syntax

[JavaScript]
{
    fileName: <string>,
    fileType: <string>,   // "application/msword", "image/png" etc.
    cancel: <boolean>
}

Properties

Property Description
cancel Set this property to true to cancel the event.
fileName The file name.
fileType The MIME type of the file.