PowerTools MultiRow for Windows Forms 8.0J
RoundedBorder コンストラクタ(LineStyle,Color)
使用例 

すべての輪郭線と角で使用する線スタイル。
すべての輪郭線と角で使用する色。
指定されたスタイルと色をすべての輪郭線と角で使用して、RoundedBorderクラスのインスタンスを初期化します。
構文
Public Function New( _
   ByVal style As LineStyle, _
   ByVal color As Color _
)
public RoundedBorder( 
   LineStyle style,
   Color color
)

パラメータ

style
すべての輪郭線と角で使用する線スタイル。
color
すべての輪郭線と角で使用する色。
使用例
次のサンプルコードは、境界線の角の半径を設定する方法を示します。このサンプルコードは、Borderに示されている詳細なコード例の一部を抜粋したものです。
void setRoundedBorderCornerRadiusToCell_Click(object sender, EventArgs e)
{
    Template template1 = gcMultiRow1.Template;

    RoundedBorder roundedBorder1 = new RoundedBorder(LineStyle.Medium, Color.Red);
    //Only set the TopLeftCorner and TopRightCorner.
    roundedBorder1.TopLeftCornerRadius = 0.3f;
    roundedBorder1.TopRightCornerRadius = 0.3f;
    template1.Row.Cells[0].Style.Border = roundedBorder1;

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

    Dim roundedBorder1 As New RoundedBorder(LineStyle.Medium, Color.Red)
    'Only set the TopLeftCorner and TopRightCorner.
    roundedBorder1.TopLeftCornerRadius = 0.3F
    roundedBorder1.TopRightCornerRadius = 0.3F
    template1.Row.Cells(0).Style.Border = roundedBorder1

    ' Reload template1.
    Me.gcMultiRow1.Template = template1
End Sub
参照

RoundedBorder クラス
RoundedBorder メンバ
オーバーロード一覧

 

 


© 2008-2015 GrapeCity inc. All rights reserved.