> For the complete documentation index, see [llms.txt](https://docs.gapvelocity.ai/webmap/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gapvelocity.ai/webmap/general/frontend/documentation/winforms-angular-components/web-components/kendoui-components/timer.md).

# Timer

Adds supports for \[System.Windows.Forms.Timer]\(<https://msdn.microsoft.com/en-us/library/system.windows.forms.timer(v=vs.110).aspx>)

## Implementation  Details:

> **Component Selector:** 'wm-timer'
>
> **Kendo UI Component:** : N/A This component does not have an associated visual element.

## Class inheritance

timerComponent extends [ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md).

## PME Support

### Properties

| Property         | Get/Set | Notify Changes | Details                                                                                                                                                                         |
| ---------------- | ------- | -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| text: string     | Yes     | Yes            | Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md). |
| name: string     | Yes     | No             | Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md). |
| enabled: boolean | Yes     | No             | Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md). |
| visible: boolean | Yes     | No             | Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md). |
| interval         | Get     | No             | Set the amount of time in milliseconds before the Tick event is raised.                                                                                                         |

### Methods

| Method          | Return type | Details                                  |
| --------------- | ----------- | ---------------------------------------- |
| enableTimer     | boolean     | Creates a timer and subscribe the event. |
| checkIfDisabled | void        | Unsubcribes the timer.                   |

### Events

| Event | Supported | Parameter       | Details                                                                                                                      |
| ----- | --------- | --------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| Tick  | Yes       | **$event**: any | Trigger Tick Event. ***$event*** parameter is optional and the ***$event***  object vary depending on the type of DOM event. |
