Skip to content

EndADLImport ​

This event is triggered after the ADL import has finished.

Parameters ​

ParameterDescription
successfulintValue, 1 if the import succeeded and 0 if not

Exit value: ​

Remarks ​

See Also ​

StartADLImport

Example ​

leo-grammar
	ON_EVENT "EndADLImport" {
	
	SET int_Success: (successful) 
	
	IF (int_Success = 1) {
	CC "AdoSript" INFOBOX "You have imported the ADL successfully"
		}
	ELSEIF (int_Success = 0) {
	CC "AdoSript" INFOBOX "Try again!"
		}
	
	}
	ON_EVENT "EndADLImport" {
	
	SET int_Success: (successful) 
	
	IF (int_Success = 1) {
	CC "AdoSript" INFOBOX "You have imported the ADL successfully"
		}
	ELSEIF (int_Success = 0) {
	CC "AdoSript" INFOBOX "Try again!"
		}
	
	}