Show / Hide Table of Contents

Class ResizeEventArgs

Argument Container for Resize event of IRenderCanvasImp.

Inheritance
System.Object
System.EventArgs
ResizeEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fusee.Engine.Common
Assembly: Fusee.Engine.Common.dll
Syntax
public class ResizeEventArgs : EventArgs

Constructors

ResizeEventArgs(Int32, Int32)

Constructs a new ResizeEventArgs.

Declaration
public ResizeEventArgs(int width, int height)
Parameters
Type Name Description
System.Int32 width

The width held for the Resize event.

System.Int32 height

The height held for the Resize event.

Properties

Height

The height held for the Resize event.

Declaration
public int Height { get; }
Property Value
Type Description
System.Int32

Width

The width held for the Resize event.

Declaration
public int Width { get; }
Property Value
Type Description
System.Int32
Generated by DocFX
GitHub Repo
Back to top