VideoMode Constructor (UInt32, UInt32, UInt32)

SFML.Net

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

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,
	uint bpp
)
Public Sub New ( 
	width As UInteger,
	height As UInteger,
	bpp As UInteger
)
public:
VideoMode(
	unsigned int width, 
	unsigned int height, 
	unsigned int bpp
)
new : 
        width : uint32 * 
        height : uint32 * 
        bpp : uint32 -> VideoMode

Parameters

width
Type: SystemUInt32
Video mode width
height
Type: SystemUInt32
Video mode height
bpp
Type: SystemUInt32
Video mode depth (bits per pixel)
See Also