"Tab" disappear when adding new ListViewItem to ListView
        Posted  
        
            by user340169
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user340169
        
        
        
        Published on 2010-05-13T10:32:10Z
        Indexed on 
            2010/05/13
            10:34 UTC
        
        
        Read the original article
        Hit count: 281
        
Hi i am trying to add string to Listview the string contain Tab (or \t) character.
when i do this the Tab disappear.
code: string text = "test Tab";// The space between the words is "Tab" of course this.listView1.Items.Add(new ListViewItem(text));
why is this happens?
© Stack Overflow or respective owner