Document "Minimized-To-Deskbar"

This commit is contained in:
Jim Saxton 2017-07-07 12:15:06 -07:00
parent b88fb30160
commit 8bf19814bc
3 changed files with 4 additions and 3 deletions

View File

@ -804,8 +804,8 @@ WINDOW CLOSE WindowView$
n = WINDOW COUNT
Returns the number of open windows
Result = WINDOW GET View$, Option$
Option$ = "Position-X/Position-Y/Width/Height/Minimum-Width/Minimum-Height/Maximum-Width/Maximum-Height/Exists"
Returns the requested property or if used with Exists returns 1 if found and 0 if not.
Option$ = "Position-X/Position-Y/Width/Height/Minimum-Width/Minimum-Height/Maximum-Width/Maximum-Height/Exists/Minimized-To-Deskbar"
Returns the requested property or if used with Exists/Minimized-To-Deskbar returns 1 if true and 0 if not.
WINDOW SET Window$, Option$, Value$
"Look", "Document/Titled(default)/Floating/Modal/Bordered/No-Border"
"Feel", "Normal(default)/Modal-App/Modal-All/Floating-App/Floating-All"

View File

@ -9169,6 +9169,7 @@ Option$ = "Minimum-Height" -- Result will contain the minimum height of the wind
Option$ = "Maximum-Width" -- Result will contain the maximum width of the window that is allowed when resizing
Option$ = "Maximum-Height" -- Result will contain the maximum height of the window that is allowed when resizing
Option$ = "Exists" -- Result will be true if a window with this WindowID$ exits and false otherwise
Option$ = "Minimized-To-Deskbar" -- Result will be true if the window has been minimized and false if it is not.
Example:
window open 100,100 to 300,300, "Example", "Example"

View File

@ -661,4 +661,4 @@ window count
window get
292851
window set
294572
294685