OnBeforeDelete
Event: OnBeforeDelete() as Boolean
XMLSpy scripting environment - VBScript:
Function On_AuthenticBeforeDelete()
' On_AuthenticBeforeDelete = False ' to disable operation
End Function
XMLSpy scripting environment - JScript:
function On_AuthenticBeforeDelete()
{
// return false; /* to disable operation */
}
XMLSpy IDE Plugin:
IXMLSpyPlugIn.OnEvent (22, ...) // nEventId = 22
Description
This event gets triggered before a delete operation gets performed on the document. Return True (or nothing) to allow delete operation. Return False to disable operation.