I want to customize the size of dataGridView cell, how can I do that? iwant to increase the height of cell
Asked
Active
Viewed 56 times
-1
-
Did you have a question? – Ňɏssa Pøngjǣrdenlarp Dec 31 '17 at 23:21
1 Answers
0
here is a sample I am using:
.Grid td { //these are data cells
background-color: #d7e1e5;
color: black;
font-size: 10pt;
line-height: 200% // Adjust the height here
}
.Grid th { //Header cells
background-color: #007FFF;
color: White;
font-size: 10pt;
line-height: 200% // Adjust the height here
}

SANM2009
- 1,918
- 2
- 12
- 30