StylusPoint.SetPropertyValue(StylusPointProperty, Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 속성을 지정된 값으로 설정합니다.
public:
void SetPropertyValue(System::Windows::Input::StylusPointProperty ^ stylusPointProperty, int value);
public void SetPropertyValue (System.Windows.Input.StylusPointProperty stylusPointProperty, int value);
member this.SetPropertyValue : System.Windows.Input.StylusPointProperty * int -> unit
Public Sub SetPropertyValue (stylusPointProperty As StylusPointProperty, value As Integer)
매개 변수
- stylusPointProperty
- StylusPointProperty
설정할 속성 값을 지정하는 StylusPointProperty입니다.
- value
- Int32
속성 값입니다.
예외
stylusPointProperty
가 Description의 속성 중 하나가 아닌 경우
예제
다음 예제에서는 속성의 값을 설정 하기 전에 스타일러스 지점 속성이 있는지 확인 합니다. 이 예제에서는 있다고 가정를 StylusPoint 호출 point
합니다.
if (point.HasProperty(StylusPointProperties.PitchRotation))
{
point.SetPropertyValue(StylusPointProperties.PitchRotation, 1000);
}
If point.HasProperty(StylusPointProperties.PitchRotation) Then
point.SetPropertyValue(StylusPointProperties.PitchRotation, 1000)
End If
설명
검사할 여부를 StylusPoint 호출 지정된 된 속성을 포함 합니다 HasProperty 중 하나를 호출 하기 전에 GetPropertyValue 메서드 또는 SetPropertyValue 메서드.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET