RadioButton.CheckAlign Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví umístění části RadioButtonzaškrtávacího políčka .
public:
property System::Drawing::ContentAlignment CheckAlign { System::Drawing::ContentAlignment get(); void set(System::Drawing::ContentAlignment value); };
[System.ComponentModel.Bindable(true)]
public System.Drawing.ContentAlignment CheckAlign { get; set; }
public System.Drawing.ContentAlignment CheckAlign { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.CheckAlign : System.Drawing.ContentAlignment with get, set
member this.CheckAlign : System.Drawing.ContentAlignment with get, set
Public Property CheckAlign As ContentAlignment
Hodnota vlastnosti
Jedna z platných ContentAlignment hodnot. Výchozí hodnota je MiddleLeft.
- Atributy
Výjimky
Přiřazená hodnota není jednou z ContentAlignment hodnot.
Příklady
Následující příklad kódu ukazuje, jak CheckAlign lze vlastnost změnit za běhu. Po změně hodnoty se část zaškrtávacího RadioButton políčka přesune do pravého nebo levého textu Checked . Tento příklad vyžaduje vytvoření RadioButton instance ovládacího prvku ve formuláři a zahrnutí odkazu na System.Drawing obor názvů.
private:
Void radioButton1_CheckedChanged( System::Object^ sender,
System::EventArgs^ e )
{
// Change the check box position to be opposite its current position.
if ( radioButton1->CheckAlign == ContentAlignment::MiddleLeft )
{
radioButton1->CheckAlign = ContentAlignment::MiddleRight;
}
else
{
radioButton1->CheckAlign = ContentAlignment::MiddleLeft;
}
}
private void radioButton1_CheckedChanged(Object sender,
EventArgs e)
{
// Change the check box position to be opposite its current position.
if (radioButton1.CheckAlign == ContentAlignment.MiddleLeft)
{
radioButton1.CheckAlign = ContentAlignment.MiddleRight;
}
else
{
radioButton1.CheckAlign = ContentAlignment.MiddleLeft;
}
}
Private Sub radioButton1_CheckedChanged(sender As Object, e As EventArgs)
' Change the check box position to be opposite its current position.
If radioButton1.CheckAlign = ContentAlignment.MiddleLeft Then
radioButton1.CheckAlign = ContentAlignment.MiddleRight
Else
radioButton1.CheckAlign = ContentAlignment.MiddleLeft
End If
End Sub