Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Wiki Markup
{alias:qsetitemtext}

Name

qsetitemtext — set text in combobox

...

The qsetitemtext command sets the textual content of a QComboBox qcombobox at the specified index position.

The index numbering starts at 0.

Arguments

None

Examples

Ex.1: Set combo item text

...

No Format
bgColor#eeeeee
borderWidth1

# Create window
set widget [qwidget ]
set layout [qvboxlayout $widget]

# Create combobox
set combo [qcombobox  ]
qaddwidget $layout

# Insert an item, then replace this item
qinsertitem $combo 0  "An item"
qsetitemtext $combo 0 "Modified item"

qshow $widget