Window.SetActive Method (Boolean)

SFML.Net

WindowSetActive Method (Boolean)
Activate of deactivate the window as the current target for rendering

Namespace: SFML.Window
Assembly: sfmlnet-window-2 (in sfmlnet-window-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public virtual bool SetActive(
	bool active
)
Public Overridable Function SetActive ( 
	active As Boolean
) As Boolean
public:
virtual bool SetActive(
	bool active
)
abstract SetActive : 
        active : bool -> bool 
override SetActive : 
        active : bool -> bool 

Parameters

active
Type: SystemBoolean
True to activate, false to deactivate (true by default)

Return Value

Type: Boolean
True if operation was successful, false otherwise
See Also