XCom.Interfaces.Base.HeightChangedEventArgs.HeightChangedEventArgs C# (CSharp) Method

HeightChangedEventArgs() public method

public HeightChangedEventArgs ( int oldHeight, int newHeight ) : System
oldHeight int
newHeight int
return System
		public HeightChangedEventArgs(int oldHeight, int newHeight)
		{
			this.newHeight = newHeight;
			this.oldHeight = oldHeight;
		}
HeightChangedEventArgs