c# - Richedit control htmltext table formatting -


i using richeditcontrol in c#. want display table(html) in control. did want change font size , color of celltext, did not work :/

here code:

string htmlbilgi = "<table><tbody style=color:purple>"; htmlbilgi += "<tr><td font:5px>ad</td><td>deniz</td><td>soyad</td><td>eliacik</td></tr>"; htmlbilgi += "<tr><td>meslek</td><td>ogretmen</td><td>yas</td><td>28"</td></tr>"; htmlbilgi += "</tbody></table>"; recbilgi.htmltext = htmlbilgi; 

you can try use styles:

<td style=\"font-size:5px\"> 

Comments

Popular posts from this blog

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -