共用方式為


ScrollBar.Orientation 屬性

定義

取得或設定值,這個值表示 ScrollBar 是水準還是垂直顯示。

public:
 property Orientation Orientation { Orientation get(); void set(Orientation value); };
Orientation Orientation();

void Orientation(Orientation value);
public Orientation Orientation { get; set; }
var orientation = scrollBar.orientation;
scrollBar.orientation = orientation;
Public Property Orientation As Orientation
<ScrollBar Orientation="Horizontal"/>
-or-
<ScrollBar Orientation="Vertical"/>

屬性值

Orientation列舉值,定義ScrollBar是水準還是垂直顯示。 預設值為 Horizontal。 特定控制項範本可能會變更此值,這會導致範本化值成為明顯的執行時間預設值。

適用於