> For the complete documentation index, see [llms.txt](https://docs.tailent.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tailent.com/scripting-utility-classes/tailent.control-class/tailent.control.controlexists.md).

# Tailent.Control.ControlExists

This method checks whether or not a defined control identifier exists and returns a boolean value.

The method takes only one parameter, which is the control identifier name as defined in the "UI Browser" tab.

**Example usage**

```
// bool result = Tailent.Control.ControlExists("ctrlId");
```

To visualize the output, the "result" variable can be printed on the screen:

```
// MessageBox.Show(result.ToString());
```
