Hi Friends,1. )How do I keep the column width fixed at runtime , i.e I dont want to allow the user to resize or change the width of the column using the mouse.
2.) How do I keep the column position fixed? I dont want the user of my application to reposition the column with the help of mouse. I want them to stay where they are at form load.
Kindly Help.Sid.
Hi Sid,
1. [Column].LockedWidth = true;
2. [Grid].DisplayLayout.Override.AllowColMoving = AllowColMoving.NotAllowed;
Ingo
Hi Ingo,Thank You,That solved it.Regards,Sid.