Component/LoadingDots
        Namespace
        components.loadingDots
            
            Constants
            
                
                
The status light component module.
                Source: lib/modules/components/loadingDots.whl, line: 8
                
                     | MODULE_COMPONENT_LOADING_DOTS | 105 | 
                
            
            
                
                
Module calls for status light component functions.
                Source: lib/modules/components/loadingDots.whl, line: 11
                
                    | LOADING_DOTS_COMPONENT_SET_HIDDEN | 0 | 
                    | LOADING_DOTS_COMPONENT_SET_X | 1 | 
                    | LOADING_DOTS_COMPONENT_SET_Y | 2 | 
                
            
            
            Properties
            These properties can be edited with the property editor in the IDE.
            
                
                    | Name | Type | Description | 
                
        | name | string | The component name. | 
        | hidden | boolean | Hide the component. | 
        | x | number | The left position of the component inside the parent component. | 
        | y | number | The top position of the component inside the parent component. | 
        | zIndex | number | The depth of the component related to other components in the parent. | 
        | color | color | The color of the dots, available colors are: gray, yellow, green, blue or red. | 
            
            
            Procedures
            
            setHidden
            Source: lib/modules/components/loadingDots.whl, line: 24
            Hide the loading dots.
            proc setHidden(number windowHandle, number componentHandle, number tabIndex)
            Parameters:
            
                | Name | Type | Description | 
                | windowHandle | number | The handle of the window. | 
                | componentHandle | number | The handle of the component. | 
                | tabIndex | number |  | 
            
            
            
            setX
            Source: lib/modules/components/loadingDots.whl, line: 33
            Set the x position of the loading dots.
            proc setX(number windowHandle, number componentHandle, number x)
            Parameters:
            
                | Name | Type | Description | 
                | windowHandle | number | The handle of the window. | 
                | componentHandle | number | The handle of the component. | 
                | x | number | The x position in pixels. | 
            
            
            
            setY
            Source: lib/modules/components/loadingDots.whl, line: 42
            Set the y position of the loading dots.
            proc setY(number windowHandle, number componentHandle, number y)
            Parameters:
            
                | Name | Type | Description | 
                | windowHandle | number | The handle of the window. | 
                | componentHandle | number | The handle of the component. | 
                | y | number | The y position in pixels. |