ChatterBox.Client.Universal.Services.FrameFormatEventArgs.FrameFormatEventArgs C# (CSharp) Method

FrameFormatEventArgs() public method

public FrameFormatEventArgs ( System.Int64 swapChainHandle, UInt32 width, UInt32 height ) : System
swapChainHandle System.Int64
width System.UInt32
height System.UInt32
return System
    public FrameFormatEventArgs(Int64 swapChainHandle, UInt32 width, UInt32 height)
    {
      SwapChainHandle = swapChainHandle;
      Width = width;
      Height = height;
    }
    public readonly Int64 SwapChainHandle;
FrameFormatEventArgs