Event: OnBeforeCopy() as Boolean
Function On_AuthenticBeforeCopy()
' On_AuthenticBeforeCopy = False ' to disable operation
End Function
function On_AuthenticBeforeCopy()
{
// return false; /* to disable operation */
}
IXMLSpyPlugIn.OnEvent (21, ...) // nEventId = 21
This event gets triggered before a copy operation gets performed on the document. Return True (or nothing) to allow copy operation. Return False to disable copying.