Window Constructor (VideoMode, String, Styles)

SFML.Net

Window Constructor (VideoMode, String, Styles)
Create the window with default creation settings

Namespace: SFML.Window
Assembly: sfmlnet-window-2 (in sfmlnet-window-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Window(
	VideoMode mode,
	string title,
	Styles style
)
Public Sub New ( 
	mode As VideoMode,
	title As String,
	style As Styles
)
public:
Window(
	VideoMode mode, 
	String^ title, 
	Styles style
)
new : 
        mode : VideoMode * 
        title : string * 
        style : Styles -> Window

Parameters

mode
Type: SFML.WindowVideoMode
Video mode to use
title
Type: SystemString
Title of the window
style
Type: SFML.WindowStyles
Window style (Resize | Close by default)
See Also