Strike through text in list view?

hackhack

Active Member
Licensed User
Longtime User
Can you do strike through text in list view?

You know when you have normal text letters and then a line though through all the letters (you'd use the "strike" tag in html) - so you can read the text but at the same time you can see it has been struck over.
 

hackhack

Active Member
Licensed User
Longtime User
RichStrings won't work with ListView as the adaptors takes Strings rather than CharacterSequences like other Views that display text. I guess Erel could change this if he wanted.

You should be able to do something with ScrollView and a Panel with Labels.

But you can't do strike-through in labels can you? Or are you suggesting graphically drawing a line?
 
Upvote 0

specci48

Well-Known Member
Licensed User
Longtime User
RichStrings won't work with ListView as the adaptors takes Strings rather than CharacterSequences like other Views that display text. I guess Erel could change this if he wanted.

Hi Erel,
is there any real chance to get this change in a future version? It's much easier to use the ListView instead of building an own ScrollView with Panels and Labels with the same functionality.

specci48
 
Upvote 0
Top