Hello Partho,
You can do that by getting the first Control in NTabControl.Controls collection, which is always NTabStrip, and then get the bounds of the NTabStrip NTabs:
NTabStrip
tabStrip = nTabControl1.Controls[0] as NTabStrip;if (tabStrip != null){
Rectangle r = tabStrip.Tabs[0].Bounds;}
Regards,
Angel.