window class : IsMaximized getter

Description

Returns a value that indicates whether the window is maximized.

Syntax

instance.IsMaximized

Arguments

None.

Return value

ClassDescription
boolWhether the window is maximized.

Sample code

1:

window w = new window();

2:

bool max = w.IsMaximized;

Notes

Returns true if the window is maximized. Otherwise, it returns false.

Links for reference

None.

Copyright © Cooker All rights reserved.