GrapeCity MultiRow Windows Forms Documentation
RoundedBorder Class
Members  Example 


Represents a rounded corner rectangle border. The class stores four Line objects for each side and four Line objects for each corner.
Object Model
RoundedBorder ClassLine StructureLine StructureLine StructureLine StructureLine StructureLine StructureLine StructureLine StructureLine StructureLine StructureLine StructureLine Structure
Syntax
Public Class RoundedBorder 
   Inherits Border
Dim instance As RoundedBorder
public class RoundedBorder : Border 
Example
The following code example shows how to set a RoundedBorder in the Cell. This example is part of a larger example available for the Border class.
void setRoundedBorderToCell_Click(object sender, EventArgs e)
        {
            Template template1 = gcMultiRow1.Template;
            Row row = template1.Row;

            //Use this constructor to set the outline RoundedBorder
            RoundedBorder roundedBorder1 = new RoundedBorder();
            roundedBorder1.Outline = new Line(LineStyle.MediumDashed, Color.Orange);
            roundedBorder1.AllCornerRadius = 0.3f;
            row.Cells[0].Style.Border = roundedBorder1;

            // Reload template1.
            this.gcMultiRow1.Template = template1;
        }
Private Sub setRoundedBorderToCell_Click(ByVal sender As Object, ByVal e As EventArgs) Handles 
setRoundedBorderToCell.Click
        Dim template1 As Template = gcMultiRow1.Template
        Dim row As Row = template1.Row

        'Use this constructor to set the outline RoundedBorder
        Dim roundedBorder1 As New RoundedBorder()
        roundedBorder1.Outline = New Line(LineStyle.MediumDashed, Color.Orange)
        roundedBorder1.AllCornerRadius = 0.3F
        row.Cells(0).Style.Border = roundedBorder1

        ' Reload template1.
        Me.gcMultiRow1.Template = template1
    End Sub
Inheritance Hierarchy

System.Object
   GrapeCity.Win.MultiRow.BorderBase
      GrapeCity.Win.MultiRow.Border
         GrapeCity.Win.MultiRow.RoundedBorder

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

RoundedBorder Members
GrapeCity.Win.MultiRow Namespace
Line Structure
BorderBase Class
Border Class
ThreeDBorder Class

 

 


Copyright © GrapeCity, inc. All rights reserved.