Window.resizable - multiple declarations
Function Window.resizable
Wraps SDL_GetWindowFlags
to check whether the window's size is resizable by the user
bool resizable() @property @trusted const;
Returns
true
if the window is resizable, otherwise false
Function Window.resizable
Wraps SDL_SetWindowResizable
(from SDL 2.0.5) which sets the window's resizability
void resizable
(
bool newResizable
) @property @trusted;
Parameters
Name | Description |
---|---|
newResizable | true to make the window resizable, otherwise false |