PowerTools MultiRow for Windows Forms 8.0J
RoundedBorder クラス
メンバ  使用例 

丸角の矩形境界線を表します。このクラスは、各辺に対応する4つのLineオブジェクトと、各角に対応する4つのLineオブジェクトを格納します。
構文
Public Class RoundedBorder 
   Inherits Border
public class RoundedBorder : Border 
使用例
次のサンプルコードは、CellRoundedBorderを設定する方法を示します。このサンプルコードは、Borderに示されている詳細なコード例の一部を抜粋したものです。
void setRoundedBorderToCell_Click(object sender, EventArgs e)
{
    Template template1 = gcMultiRow1.Template;
    Row row = template1.Row;

    //Using this constructor can 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

    'Using this constructor can 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
継承階層

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

参照

RoundedBorder メンバ
GrapeCity.Win.MultiRow 名前空間
Line 構造体
BorderBase クラス
Border クラス
ThreeDBorder クラス

 

 


© 2008-2015 GrapeCity inc. All rights reserved.