Infragistics Grid Header Height


/ Published in: C#
Save to your folder(s)



Copy this code and paste it in your HTML
  1. m_grid.DisplayLayout.Bands[0].RowLayoutStyle = RowLayoutStyle.ColumnLayout;
  2. m_grid.DisplayLayout.Bands[0].Override.AllowRowLayoutLabelSizing = RowLayoutSizing.Both;
  3.  
  4.  
  5. column.RowLayoutColumnInfo.MinimumLabelSize = new Size(1,1);
  6. column.RowLayoutColumnInfo.PreferredLabelSize = new Size(10,11);
  7. column.RowLayoutColumnInfo.ActualLabelSize = new Size(10,11);

URL: http://forums.infragistics.com/forums/p/3593/18809.aspx#18809

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.