New to Telerik UI for WinForms? Download free 30-day trial

TabVsShape

The following image shows the TabVsShape applied to a RadPanel:

tab-vs-shape001

The following code shows how you can create and apply a TabVsShape:

TabVsShape tabVsShape = new TabVsShape();
radPanel1.BackColor = Color.ForestGreen;
this.radPanel1.RootElement.Shape = tabVsShape;
this.radPanel1.RootElement.ApplyShapeToControl = true;

Dim tabVsShape As TabVsShape = New TabVsShape()
radPanel1.BackColor = Color.ForestGreen
Me.radPanel1.RootElement.Shape = tabVsShape
Me.radPanel1.RootElement.ApplyShapeToControl = True

Properties

  • RightToLeft: A property of type bool that gets or sets the orientation of this shape.
  • CloseFigure: A property of type bool that apply the close figure.

See Also

In this article