PowerTools MultiRow for Windows Forms 8.0J
UpDownAlign プロパティ (DomainUpDownCell)
使用例 

ボックス上での上下ボタンの配置を示す値を取得または設定します。
構文
Public Property UpDownAlign As LeftRightAlignment
public LeftRightAlignment UpDownAlign {get; set;}

プロパティ値

System.Windows.Forms.LeftRightAlignment値の1つ。既定値はSystem.Windows.Forms.LeftRightAlignment.Rightです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSystem.Windows.Forms.LeftRightAlignment値の1つではありません。
使用例
次のサンプルコードは、このプロパティによって上下ボタンの配置を設定する方法を示します。このサンプルコードは、DomainUpDownCellに示されている詳細なコード例の一部を抜粋したものです。
void setUpDownAlignButton_Click(object sender, EventArgs e)
{
    DomainUpDownCell domainUpDownCell1 = this.gcMultiRow1[0, 0] as DomainUpDownCell;
    domainUpDownCell1.ShowSpinButton = CellButtonVisibility.ShowAlways;

    if (domainUpDownCell1.UpDownAlign == LeftRightAlignment.Left)
    {
        domainUpDownCell1.UpDownAlign = LeftRightAlignment.Right;
    }
    else
    {
        domainUpDownCell1.UpDownAlign = LeftRightAlignment.Left;
    }
    label.Text = "Click the button repeatedly, the UpDownAlign property will take effect.";
}
Private Sub setUpDownAlignButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setUpDownAlignButton.Click
    Dim domainUpDownCell1 As DomainUpDownCell = TryCast(Me.gcMultiRow1(0, 0), DomainUpDownCell)
    domainUpDownCell1.ShowSpinButton = CellButtonVisibility.ShowAlways

    If domainUpDownCell1.UpDownAlign = LeftRightAlignment.Left Then
        domainUpDownCell1.UpDownAlign = LeftRightAlignment.Right
    Else
        domainUpDownCell1.UpDownAlign = LeftRightAlignment.Left
    End If
    label.Text = "Click the button repeatedly, the UpDownAlign property will take effect."
End Sub
参照

DomainUpDownCell クラス
DomainUpDownCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.