Window.maximumSize - multiple declarations

Function Window.maximumSize

Wraps SDL_GetWindowMaximumSize which gets the maximum size in pixels that the window can be resized to

uint[2] maximumSize() @property @trusted const;

Returns

maximum set size of the window in pixels

Function Window.maximumSize

Wraps SDL_SetWindowMaximumSize which sets the maximum size in pixels that the window can be resized to

void maximumSize (
  uint[2] newMaximumSize
) @property @trusted;

Parameters

NameDescription
newMaximumSize new maximum set size of the window in pixels (width and height)