RSSWeatherLayer.WeatherItemEventArgs.WeatherItemEventArgs C# (CSharp) Method

WeatherItemEventArgs() public method

public WeatherItemEventArgs ( int id, long zipCode, double X, double Y, int iconWidth, int iconHeight ) : System
id int
zipCode long
X double
Y double
iconWidth int
iconHeight int
return System
    public WeatherItemEventArgs(int id, long zipCode, double X, double Y, int iconWidth, int iconHeight)
		{
			m_id = id;
			m_zipCode = zipCode;
			m_x = X;
			m_y = Y;
			m_iconWidth = iconWidth;
			m_iconHeight = iconHeight;
		}
WeatherItemEventArgs