S
STom
I am adding grid columns to me grid like so:
column = New DataGridTextBoxColumn
column.MappingName = "ValuePercent"
column.HeaderText = "Percent"
column.Width = 50
tableStyle.GridColumnStyles.Add(column)
Is there a way I can add a column that is not visible?
What I would like to do create two columns in my grid that already have data values in them. Not quite sure how to do that.
Thanks.
Stom
column = New DataGridTextBoxColumn
column.MappingName = "ValuePercent"
column.HeaderText = "Percent"
column.Width = 50
tableStyle.GridColumnStyles.Add(column)
Is there a way I can add a column that is not visible?
What I would like to do create two columns in my grid that already have data values in them. Not quite sure how to do that.
Thanks.
Stom