<div class="meta" robots="noindex">

</div>

# ListBox.ActiveCell

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

<div class="warning">

<div class="title">

Warning

</div>

This item was deprecated in version 2019r2. Please use `DesktopListBox.ActiveTextControl<desktoplistbox.activetextcontrol>` as a replacement.

</div>

## Description

The `TextArea</api/deprecated/textarea>` that the **ListBox** uses for its editable cell operations.

## Notes

The `TextEdit</api/deprecated/textedit>` can be either a `TextField</api/deprecated/textfield>` or a `TextArea</api/deprecated/textarea>` control. To specify which one, the ListBox uses the following ListBox constants:

``` xojo
ListBox.TypeEditableTextArea
ListBox.TypeEditableTextField
```

For example,

``` xojo
ListBox1.CellType(1,0) = ListBox.TypeEditableTextField
```

To get this `TextField</api/deprecated/textfield>`, you must put the cell into the Inline Editable mode via the `CellType<listbox.celltypeat>` or `ColumnType<listbox.columntypeat>` properties and make it editable by calling the `EditCell<listbox.editcellat>` method. You can use this property to set or get the text of the ListBox cell (using `SelText<textedit.selectedtext>`), set the selection, or change other properties of the ListBox's `TextField</api/deprecated/textfield>`.

## Compatibility

All projects types on all supported operating systems.
