UltimateListCtrl shows non Hyperlink-Items as Hyperlinks

129 Views Asked by At

I currently have the problem that when I put the "hypertext" flag with the method "SetHyperText" to an item , then the rest of items are shown as hyperlinks even though they are not.

Code:

for ids in [2, 3]:
    item = self.list.GetItem(ids, 1)
    item.SetHyperText(True)
    self.list.SetItem(item)

hyperlink text
As hyperlink showed non hyperlink text

Is this a bug or am I doing something wrong?

kind regards

1

There are 1 best solutions below

0
On

try this

for ids in [2, 3]:
    self.list.SetItemHyperText(ids, 1)