Window.minimumSize - multiple declarations
Function Window.minimumSize
Wraps SDL_GetWindowMinimumSize
which gets the minimum size in pixels that the window can be
resized to
uint[2] minimumSize() @property @trusted const;
Returns
minimum set size of the window in pixels
Function Window.minimumSize
Wraps SDL_SetWindowMinimumSize
which sets the minimum size in pixels that the window can be
resized to
void minimumSize
(
uint[2] newMinimumSize
) @property @trusted;
Parameters
Name | Description |
---|---|
newMinimumSize | new minimum set size of the window in pixels (width and height) |