qsetitemtext - set text in combobox

Name

qsetitemtext — set text in combobox

Syntax

qsetitemtext [qcombobox] index text

Description

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

The index numbering starts at 0.

Arguments

None

Examples

Ex.1: Set combo item text

# 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