---
title: "getNumListBoxItems"
canonical: "https://help.vicon.com/space/ShogunPost121/1253737357/getNumListBoxItems"
format: markdown
---
# Description

Gets the number of items in the list box user control that is specified by `userControlID`.

## Functional area

User Window

# Command syntax

## Syntax

> Macro (scroll-tablelayout)

|  |
| --- |
| `getNumListBoxItems userControlID` |

### Arguments

| Name | Type | Required | Comments |
| --- | --- | --- | --- |
| `userControlId` | int | yes | ID of user control to operate on. |

### Flags

None

## Return value

integer 

> Macro (scroll-pagebreak)

## Examples

```plaintext
// Get the number of List Box User Control items 
int $windowId;
int $controlId;
int $numItems;
 
// First create a User Window to place the Control on
$windowId = `createWindow "MyWindow"`;
 
// Create the User Control on the Window. 
$controlId = `createListBox $windowId`;
 
// Add some items to the List Box.
addListBoxItem $controlId "Item 1";
addListBoxItem $controlId "Item 2";
addListBoxItem $controlId "Item 3";
 
// Get the number of items
$numItems = `getNumListBoxItems $controlId`;
print $numItems;
```

# Additional information

## Related commands

- [addListBoxItem](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737108)
- [createListBox](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253738733)
- [deleteAllListBoxItems](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736453)
- [deleteListBoxItem](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736724)
- [findListBoxItem](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736496)
- [getListBoxItem](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736807)
- [getListBoxSelItems](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253737388)
- [selectListBoxItem](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253736476)
- [setListBoxHandler](https://vicon-help.atlassian.net/wiki/spaces/ShogunPost121/pages/1253738430)