HA
haneefm
Syncfusion Team
July 24, 2007 06:20 PM UTC
Hi Shuvendu,
You can control the RightToLeft settings when adding the grid into TabControl by overriding the OnRightToLeftChanged method in a derived GridControl class. Below are the code snippet
public class MyGridControl : GridControl
{
protected override void OnRightToLeftChanged(EventArgs e)
{
this.RightToLeft = RightToLeft.No;
base.OnRightToLeftChanged(e);
}
}
Best regards,
Haneef