5 Answers, 1 is accepted
0

Richard Slade
Top achievements
Rank 2
answered on 08 Feb 2011, 12:03 PM
Hello,
Please could you add a screenshot of what you would like to change as I am unsure of your requirement
thanks
Richard
Please could you add a screenshot of what you would like to change as I am unsure of your requirement
thanks
Richard
0

Alex
Top achievements
Rank 1
answered on 08 Feb 2011, 01:50 PM
Hi,
the left side was the old Version, the right one is with Release 2010.3.10.1215. We want the text "Drag a column header from the grid..." at the bottom of the form...
thanks,
Alexander
the left side was the old Version, the right one is with Release 2010.3.10.1215. We want the text "Drag a column header from the grid..." at the bottom of the form...
thanks,
Alexander
0
Accepted

Richard Slade
Top achievements
Rank 2
answered on 08 Feb 2011, 02:36 PM
Hi Alex,
You can alter the position of the text in the following way
Hope that helps
Richard
You can alter the position of the text in the following way
this
.radGridView1.ColumnChooser.Shown +=
new
EventHandler(ColumnChooser_Shown);
void
ColumnChooser_Shown(
object
sender, EventArgs e)
{
this
.radGridView1.ColumnChooser.ColumnChooserControl.ColumnChooserElement.TextAlignment = ContentAlignment.BottomCenter;
}
Hope that helps
Richard
0

Alex
Top achievements
Rank 1
answered on 08 Feb 2011, 03:46 PM
yay... thanks...
0

Richard Slade
Top achievements
Rank 2
answered on 08 Feb 2011, 03:48 PM
Glad I could help.
All the best
Richard
All the best
Richard