UIElement.IsHitTestVisible 속성

정의

UIElement 의 포함된 영역이 적중 횟수 테스트를 위해 실제 값을 반환할 수 있는지 여부를 가져오거나 설정합니다.

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

void IsHitTestVisible(bool value);
public bool IsHitTestVisible { get; set; }
var boolean = uIElement.isHitTestVisible;
uIElement.isHitTestVisible = boolean;
Public Property IsHitTestVisible As Boolean
<uiElement IsHitTestVisible="bool"/>

속성 값

Boolean

bool

UIElement의 포함된 영역을 적중 테스트에 사용할 수 있으면 true입니다. 그렇지 않으면 false입니다. 기본값은 true입니다.

적용 대상