New to Telerik ReportingStart a free 30-day trial

Represents shape with rounded corners.

Definition

Constructors

Initializes a new instance of the RoundedCornerShape class with the specified angle of rotation and corner rounding.

C#
protected RoundedCornerShape(double startAngle, int rounding)
Parameters:startAngledouble

A double value specifying the angle of rotation of the shape in degrees.

roundingint

An int value between 0 and 100 specifying the rounding of the corners as a percentage.

Properties

Gets or sets the rounding factor for the shape.

C#
public int Rounding { get; set; }
Property Value:

A double value between 0 and 100 specifying the rounding factor of the shape in percentage. 0 means no rounding, 100 means full rounding.

Methods

When overridden this method should create shape that will be rounded using the RoundVertexOp operator.

C#
protected abstract void CreateRawShape()

Creates the shape.

C#
protected override void CreateShape()

Overrides: ShapeBase.CreateShape()