ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / RoundRect Class
Members Example

In This Topic
    RoundRect Class
    In This Topic
    Represents a canvas element with a rounded rectangle.
    Object Model
    RoundRect Class
    Syntax
    'Declaration
     
    Public Class RoundRect 
       Inherits CanvasItem
       Implements IBordered 
    public class RoundRect : CanvasItem, IBordered  
    Example
    public void DrawRoundRect(float left, float top, float width, float height, float edgeWidth, float edgeHeight)
    {
        CanvasItems.Add(new RoundRect(left, top, width, height, edgeWidth, edgeHeight));
    }
    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.Document.Section.CanvasItem
          GrapeCity.ActiveReports.Document.Section.RoundRect

    See Also