다음을 통해 공유


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"/>

속성 값

ScrollBar가 가로 또는 세로로 표시되는지 여부를 정의하는 방향 열거형 값입니다. 기본값은 Horizontal입니다. 특정 컨트롤 템플릿은 이 값을 변경하여 템플릿화된 값이 명백한 런타임 기본값이 될 수 있습니다.

적용 대상