all(iterable)

Returns test


iterableThe title that appears in the title bar of the application (String).

REMARKS
* No prefix required - Core
* Return True if all elements of the iterable are true (or if the iterable is empty).
* If "wait" = 1, then the calling application waits until it has the focus before activating the specific application.
* If "wait" = True, then 1 is used.
* This subroutine cannot change whether the application or window is maximised or minimised, it only changes focus.
* You can use the Shell function to change the status of the window (maximised or minimised).

def all(iterable): 
    for element in iterable:
        if not element:
            return False
    return True

© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top