D:\NorthwindForWeb\Northwind\CS\DotNet\ADO.Net\Northwind\WebControls\GeneralWebEvent.cs
/*
* This file was generated by ProCG version 2.0
*
* File name: Northwind\WebControls\GeneralWebEvent.cs
* Language: C# - ADO.Net
* Database: My Sql
*
* Copyright (c) 2002-2019 iGenXSoft.
* For more information visit http://www.igenxsoft.com
*/
//ProCG Section 1_0_Using - Please do not edit this section, it will be overridden by ProCG next time code is generated; you may add code between sections.
using System;
using System.Collections.Generic;
using System.Text;
using Northwind.Data;
//End ProCG Section 1_0_Using
namespace Northwind.WebControls
{
public class GeneralWebEvent : EventArgs
{
//ProCG Section 3_0_Body - Please do not edit this section, it will be overridden by ProCG next time code is generated; you may add code between sections.
protected EventTypeEnum m_EventType;
protected CStructData m_StructData;
public enum EventTypeEnum
{
BeforeCreateChildControls = 1,
NewRowWasInserted = 2,
BeforeDisplayRow = 3,
AfterGotDataByCriteria = 9
}
public EventTypeEnum EvenetType
{
get { return m_EventType; }
set { m_EventType = value; }
}
public CStructData StructData
{
get { return m_StructData; }
set { m_StructData = value; }
}
//End ProCG Section 3_0_Body
//ProCG Section 999_0_EndOfClass - Please do not edit this section, it will be overridden by ProCG next time code is generated; you may add code between sections.
}
}
//End ProCG Section 999_0_EndOfClass
// 1568 ProCG uses this line - don't edit it