Changing the style of Individual cells in a datagridview row

18,850

certainly:

Me.myDatagridview.Rows(0).Cells(0).Style.ForeColor = Color.Aqua

Share:
18,850
Jon Winstanley
Author by

Jon Winstanley

Web Developer Web developer, London I am the developer behind the popular domain expiry reminder service Skinny Domain PHP, Symfony, Laravel Javascript, React, React Native, jQuery HTML5 & CSS3 MySQL, MariaDB, Postgres

Updated on June 14, 2022

Comments

  • Jon Winstanley
    Jon Winstanley about 2 years

    Is it possible to give individual cells in a data grid view row different styles such as backcolor, fontcolor etc?

    I do not mean giving the whole row a new style, only a specific cell.