Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Table cell width
Message
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Table cell width
Miscellaneous
Thread ID:
00779181
Message ID:
00779181
Views:
51
The following little code is right out of the .net help:

for(rowCtr=1; rowCtr <= rowCnt; rowCtr++) {
// Create new row and add it to the table.
TableRow tRow = new TableRow();
Table1.Rows.Add(tRow);
for (cellCtr = 1; cellCtr <= cellCnt; cellCtr++) {
// Create a new cell and add it to the row.
TableCell tCell = new TableCell();
tCell.Text = "Row " + rowCtr + ", Cell " + cellCtr;
tRow.Cells.Add(tCell);
}
}

How can I set that all cells of the table to be of the same width? Say I want all cells to be much wider than the text "Row...". I don't see any property in tCell.Width object which would allow me to do that. Maybe I am missing something.

I would appreciate any help.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Next
Reply
Map
View

Click here to load this message in the networking platform