Aracılığıyla paylaş


StylusPoint.GetPropertyValue(StylusPointProperty) Yöntem

Tanım

Belirtilen özelliğin değerini döndürür.

public:
 int GetPropertyValue(System::Windows::Input::StylusPointProperty ^ stylusPointProperty);
public int GetPropertyValue (System.Windows.Input.StylusPointProperty stylusPointProperty);
member this.GetPropertyValue : System.Windows.Input.StylusPointProperty -> int
Public Function GetPropertyValue (stylusPointProperty As StylusPointProperty) As Integer

Parametreler

stylusPointProperty
StylusPointProperty

StylusPointProperty hangi özellik değerinin alındığını belirtir.

Döndürülenler

Belirtilen StylusPointPropertydeğerinin değeri.

Özel durumlar

stylusPointProperty içindeki Descriptionözelliklerden biri değildir.

Örnekler

Aşağıdaki örnek, özelliğin değerini almadan önce ekran kalemi noktası özelliğinin varlığını denetler. Bu örnekte adlı pointbir StylusPoint olduğu varsayılır.

if (point.HasProperty(StylusPointProperties.PitchRotation))
{
    int pitchRotation = point.GetPropertyValue(StylusPointProperties.PitchRotation);
}
If point.HasProperty(StylusPointProperties.PitchRotation) Then
    Dim pitchRotation As Integer = _
            point.GetPropertyValue(StylusPointProperties.PitchRotation)
End If

Açıklamalar

öğesinin StylusPoint belirtilen özelliği içerip içermediğini denetlemek için yöntemini veya yöntemini çağırmadan GetPropertyValue önce öğesini çağırın HasPropertySetPropertyValue.

Şunlara uygulanır