Skip to content

Commit dfe51b1

Browse files
committed
Fix listbox.multiselect issue in control-objects.md (re PR #12)
1 parent 7eb77f7 commit dfe51b1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/user-interface-tools/control-objects.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,7 @@ A list box with zero or more items. Calls the [onChange](#onchange) callback if
408408
| Property | Type | Description |
409409
| ----------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
410410
| `name` | String | A unique name for the control. |
411-
| `multiselect` | Boolean | When `false` (the default), only one item can be |
412-
| `selected` | Boolean | When `true`, multiple items can be selected. |
411+
| `multiselect` | Boolean | When `false` (the default), only one item can be selected. When `true`, multiple items can be selected. |
413412
| `items` | Array of Strings | The text of each list item. Supply this property, or the `items` argument, not both. This form is most useful for elements defined using [Resource specifications](resource-specifications.md). |
414413
| `numberOfColumns` | Number | A number of columns in which to display the items; default is 1. When there are multiple columns, each [ListItem](types-of-controls.md#listitem) object represents a single selectable row. Its [text](#text) and [image](#image) values supply the label for the first column, and the `subitems` property specifies labels for additional columns. |
415414
| `showHeaders` | Boolean | `true` to display column titles. |

0 commit comments

Comments
 (0)