VideoMode Constructor (UInt32, UInt32)

SFML.Net

VideoMode Constructor (UInt32, UInt32)
Construct the video mode with its width and height

Namespace: SFML.Window
Assembly: sfmlnet-window-2 (in sfmlnet-window-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public VideoMode(
	uint width,
	uint height
)
Public Sub New ( 
	width As UInteger,
	height As UInteger
)
public:
VideoMode(
	unsigned int width, 
	unsigned int height
)
new : 
        width : uint32 * 
        height : uint32 -> VideoMode

Parameters

width
Type: SystemUInt32
Video mode width
height
Type: SystemUInt32
Video mode height
See Also