StylusPoint Структура

Определение

Представляет одну точку данных, полученную от диджитайзера или пера.

public value class StylusPoint : IEquatable<System::Windows::Input::StylusPoint>
public struct StylusPoint : IEquatable<System.Windows.Input.StylusPoint>
type StylusPoint = struct
Public Structure StylusPoint
Implements IEquatable(Of StylusPoint)
Наследование
StylusPoint
Реализации

Примеры

В следующем примере возвращаются имена свойств и значения для каждого из них StylusPoint в StylusPointCollection. В этом примере предполагается, что существует объект с TextBlock именем packetOutput.

private void WriteStylusPointValues(StylusPointCollection points)
{
    StylusPointDescription pointsDescription = points.Description;

    ReadOnlyCollection<StylusPointPropertyInfo> properties = 
        pointsDescription.GetStylusPointProperties();
    
    // Write the name and value of each property in
    // every stylus point.
    StringWriter packetWriter = new StringWriter();
    packetWriter.WriteLine("{0} stylus points", points.Count.ToString());
    foreach (StylusPoint stylusPoint in points)
    {
        packetWriter.WriteLine("Stylus Point info");
        packetWriter.WriteLine("X: {0}", stylusPoint.X.ToString());
        packetWriter.WriteLine("Y: {0}", stylusPoint.Y.ToString());
        packetWriter.WriteLine("Pressure: {0}", stylusPoint.PressureFactor.ToString());

        // Get the property name and value for each StylusPoint.
        // Note that this loop reports the X, Y, and pressure values differantly than 
        // getting their values above.
        for (int i = 0; i < pointsDescription.PropertyCount; ++i)
        {
            StylusPointProperty currentProperty = properties[i];

            // GetStylusPointPropertyName is defined below and returns the
            // name of the property.
            packetWriter.Write("{0}: ", GetStylusPointPropertyName(currentProperty));
            packetWriter.WriteLine(stylusPoint.GetPropertyValue(currentProperty).ToString());
        }
        packetWriter.WriteLine();
    }

    packetOutput.Text = packetWriter.ToString();
}
Private Sub WriteStylusPointValues(ByVal points As StylusPointCollection) 
    Dim pointsDescription As StylusPointDescription = points.Description
    
    Dim properties As ReadOnlyCollection(Of StylusPointPropertyInfo) = _
                            pointsDescription.GetStylusPointProperties()
    
    ' Write the name and value of each property in
    ' every stylus point.
    Dim packetWriter As New StringWriter()

    packetWriter.WriteLine("{0} stylus points", points.Count.ToString())

    For Each stylusPoint As StylusPoint In points

        packetWriter.WriteLine("Stylus Point info")
        packetWriter.WriteLine("X: {0}", stylusPoint.X.ToString())
        packetWriter.WriteLine("Y: {0}", stylusPoint.Y.ToString())
        packetWriter.WriteLine("Pressure: {0}", stylusPoint.PressureFactor.ToString())

        ' Get the property name and value for each StylusPoint.
        ' Note that this loop reports the X, Y, and pressure values differantly than 
        ' getting their values above.
        For i As Integer = 0 To pointsDescription.PropertyCount - 1

            Dim currentProperty As StylusPointProperty = properties(i)

            ' GetStylusPointPropertyName is defined below and returns the
            ' name of the property.
            packetWriter.Write("{0}: ", GetStylusPointPropertyName(currentProperty))
            packetWriter.WriteLine(stylusPoint.GetPropertyValue(currentProperty).ToString())
        Next i

        packetWriter.WriteLine()

    Next stylusPoint

    packetOutput.Text = packetWriter.ToString()

End Sub
// Use reflection to get the name of currentProperty.
private string GetStylusPointPropertyName(StylusPointProperty currentProperty)
{
    Guid guid = currentProperty.Id;

    // Iterate through the StylusPointProperties to find the StylusPointProperty
    // that matches currentProperty, then return the name.
    foreach (FieldInfo theFieldInfo
        in typeof(StylusPointProperties).GetFields())
    {
        StylusPointProperty property = (StylusPointProperty) theFieldInfo.GetValue(currentProperty);
        if (property.Id == guid)
        {
            return theFieldInfo.Name;
        }
    }
    return "Not found";
}
' Use reflection to get the name of currentProperty.
Private Function GetStylusPointPropertyName(ByVal currentProperty As StylusPointProperty) As String 
    Dim guid As Guid = currentProperty.Id
    
    ' Iterate through the StylusPointProperties to find the StylusPointProperty
    ' that matches currentProperty, then return the name.
    Dim theFieldInfo As FieldInfo

    For Each theFieldInfo In GetType(StylusPointProperties).GetFields()

        Dim pointProperty As StylusPointProperty = _
            CType(theFieldInfo.GetValue(currentProperty), StylusPointProperty)

        If pointProperty.Id = guid Then
            Return theFieldInfo.Name
        End If

    Next theFieldInfo

    Return "Not found"

End Function 'GetStylusPointPropertyName

Комментарии

Собирает StylusPoint данные, когда пользователь вводит рукописный ввод с помощью дигитайзера. Поскольку сведения, сообщаемые дигитайзером, различаются в зависимости от производителя, свойства в StylusPoint могут отличаться. Чтобы определить, находится ли свойство в StylusPoint, вызовите HasProperty метод . Свойство Description содержит объект , указывающий StylusPointDescription , какие свойства находятся в StylusPoint. Все StylusPoint объекты содержат свойства, определяющие координаты (x, y), а также давление.

Конструкторы

StylusPoint(Double, Double)

Инициализирует новый экземпляр класса StylusPoint, используя указанные координаты (X, Y).

StylusPoint(Double, Double, Single)

Инициализирует новый экземпляр класса StylusPoint, используя заданные координаты (x, y) и давление.

StylusPoint(Double, Double, Single, StylusPointDescription, Int32[])

Инициализирует новый экземпляр класса StylusPoint, используя указанные координаты (X, Y), pressureFactor и дополнительные параметры, заданные в StylusPointDescription.

Поля

MaxXY

Задает максимальное допустимое значение для пары координат (x, y).

MinXY

Задает минимальное допустимое значение для пары координат (x, y).

Свойства

Description

Получает или задает объект StylusPointDescription определяющий свойства, хранящиеся в StylusPoint.

PressureFactor

Получает или задает значение от 0 до 1, отражающее силу давления пера на поверхность диджитайзера, когда создается StylusPoint.

X

Получает или задает значение координаты x объекта StylusPoint.

Y

Получает или задает y-координату объекта StylusPoint.

Методы

Equals(Object)

Возвращает значение, указывающее, равен ли заданный объект объекту StylusPoint.

Equals(StylusPoint)

Возвращает логическое значение, показывающее, равен ли заданный объект StylusPoint текущему объекту StylusPoint.

Equals(StylusPoint, StylusPoint)

Возвращает логическое значение, указывающее, равны ли два заданных объекта StylusPoint.

GetHashCode()

Возвращает хэш-код данного экземпляра.

GetPropertyValue(StylusPointProperty)

Возвращает значение заданного свойства.

HasProperty(StylusPointProperty)

Возвращает значение, указывающее, содержит ли текущий StylusPoint заданное свойство.

SetPropertyValue(StylusPointProperty, Int32)

Присваивает заданному свойству заданное значение.

ToPoint()

Преобразует StylusPoint в Point.

Операторы

Equality(StylusPoint, StylusPoint)

Сравнивает два заданных объекта StylusPoint, и определяет, являются ли они равными.

Explicit(StylusPoint to Point)

Приводит указанный объект StylusPoint к типу Point.

Inequality(StylusPoint, StylusPoint)

Возвращает логическое значение, указывающее, являются ли два заданных объекта StylusPoint неравными.

Применяется к