TrackBar.Orientation Vlastnost

Definice

Získá nebo nastaví hodnotu označující vodorovnou nebo svislou orientaci pruhu dráhy.

public:
 property System::Windows::Forms::Orientation Orientation { System::Windows::Forms::Orientation get(); void set(System::Windows::Forms::Orientation value); };
public System.Windows.Forms.Orientation Orientation { get; set; }
member this.Orientation : System.Windows.Forms.Orientation with get, set
Public Property Orientation As Orientation

Hodnota vlastnosti

Jedna z Orientation hodnot.

Výjimky

Přiřazená hodnota není jednou z Orientation hodnot.

Příklady

Následující příklad ukazuje, jak nastavit některé vlastnosti TrackBar .

trackBar2->Orientation = Orientation::Vertical;
trackBar3->Orientation = Orientation::Vertical;
trackBar1->Maximum = 255;
trackBar2->Maximum = 255;
trackBar3->Maximum = 255;
trackBar1->Width = 400;
trackBar2->Height = trackBar1->Width;
trackBar3->Height = trackBar1->Width;
trackBar1->LargeChange = 16;
trackBar2->LargeChange = 16;
trackBar3->LargeChange = 16;
trackBar2.Orientation = Orientation.Vertical;
trackBar3.Orientation = Orientation.Vertical;
trackBar1.Maximum = trackBar2.Maximum = trackBar3.Maximum = 255;
trackBar1.Width = 400;
trackBar2.Height = trackBar3.Height = trackBar1.Width;
trackBar1.LargeChange = trackBar2.LargeChange = trackBar3.LargeChange = 16;
trackBar2.Orientation = Orientation.Vertical
trackBar3.Orientation = Orientation.Vertical
trackBar1.Maximum = 255
trackBar2.Maximum = 255
trackBar3.Maximum = 255
trackBar1.Width = 400
trackBar2.Height = 400
trackBar3.Height = 400
trackBar1.LargeChange = 16
trackBar2.LargeChange = 16
trackBar3.LargeChange = 16

Poznámky

Orientation Pokud je vlastnost nastavená na Orientation.Horizontal, posouvání se při zvětšování posunuje zleva dopravaValue. Orientation Když je vlastnost nastavená na Orientation.Vertical, posouvání se při zvětšování posunuje odspodu Value nahoru.

Platí pro

Viz také