//================================================================================ 
// SuperMap IS .NET 客户端程序,版权所有，北京超图地理信息技术有限公司，2000-2005。 
// 本程序只能在有效的授权许可下使用。未经许可，不得以任何手段擅自使用或传播。 
// 作者：			胡中南 
// 修改：	 
// 文件名：			SMISCustomEvents.js
// 功能：			自定义事件，供用户二次开发。
// 版本：			5.1.0.7103
// 最后修改时间：	2004-09-03 

// client program of SuperMap IS .NET. CopyRight(C)2000-2005 SuperMap GIS Technologies, Inc.
// This program can only use when it is permitted by applicable law or authorized. Without permission , can't use or spread by means of any . 
// Author: Hu zhongnan
// Modify by :	 
// File name:			SMISCustomEvents.js
// Function:			Custom event, provide for second develop.

// Version:			5.1.0.7103 
// Last modification time:	2004-09-03
//================================================================================
 

/*-----------------------------------------------------------------------------
 *
 *			 Events about Action.

 *
 -----------------------------------------------------------------------------*/

// (CH) Action 将要开始时的事件。 //
// (EN) Fire when Action will execute 
function BeforeActionStart(map)
{
	//
	// 在这里添加用户代码 (English --- Put user code here )//
	//
	
	// (CH) 如果 return false，则将不执行ActionStart操作。 //
	// (EN) Do not execute ActionStart function, if returns false.
	return true;
}

// (CH) Action 开始之后的事件。  //
// (EN) Fire when Action is called 
function AfterActionStarted(map)
{
	//
	// 在这里添加用户代码  (English --- Put user code here )//
	//
}
 
// (CH) Action 将要停止时的事件。 
// (EN) Fire when Action will finish.  
function BeforeActionStop(map)
{
	//
	// 在这里添加用户代码  (English --- Put user code here )
	//
	
	// (CH) 如果 return false，则将不执行ActionStop操作。 
	// (EN) Do not execute ActionStart function, if returns false. 
	return true;
}

// (CH) Action 停止之后的事件。
// (EN) Fire after Action finishs.   
function AfterActionStopped(map)
{
	//
	// 在这里添加用户代码  (English --- Put user code here )
	//
	
}

