Headerwidth in DataGridView

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

i have a datagridview with a column named position. it contains a
positionnumber, shorter than the headertext. The result is, that i can't see
the full text.

I tried everything to increase the width, but nothing helped.

Can anybody help me out of this??

Thanks,
Thorsten
 
Thorsten moeller pisze:
Hi,

i have a datagridview with a column named position. it contains a
positionnumber, shorter than the headertext. The result is, that i can't see
the full text.

I tried everything to increase the width, but nothing helped.

Can anybody help me out of this??

I am not sure if I have understood you well, but maybe you should take a
look at AutoSizeMode property:

dgv.Columns["position"].AutoSizeMode =
DataGridViewAutoSizeColumnMode.ColumnHeader;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top