コード例 #1
0
 // Summary:
 //     Initializes a new instance of the System.Windows.Input.StylusPointProperty
 //     class.
 //
 // Parameters:
 //   stylusPointProperty:
 protected StylusPointProperty(StylusPointProperty stylusPointProperty)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 //
 // Summary:
 //     Sets the specified property to the specified value.
 //
 // Parameters:
 //   stylusPointProperty:
 //     The System.Windows.Input.StylusPointProperty that specifies which property
 //     value to set.
 //
 //   value:
 //     The value of the property.
 //
 // Exceptions:
 //   System.ArgumentException:
 //     stylusPointProperty is not one of the properties in System.Windows.Input.StylusPoint.Description.
 public void SetPropertyValue(StylusPointProperty stylusPointProperty, int value)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 //
 // Summary:
 //     Returns whether the current System.Windows.Input.StylusPoint contains the
 //     specified property.
 //
 // Parameters:
 //   stylusPointProperty:
 //     The System.Windows.Input.StylusPointProperty to check for in the System.Windows.Input.StylusPoint.
 //
 // Returns:
 //     true if the specified System.Windows.Input.StylusPointProperty is in the
 //     current System.Windows.Input.StylusPoint; otherwise, false.
 public bool HasProperty(StylusPointProperty stylusPointProperty)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 //
 // Summary:
 //     Returns the value of the specified property.
 //
 // Parameters:
 //   stylusPointProperty:
 //     The System.Windows.Input.StylusPointProperty that specifies which property
 //     value to get.
 //
 // Returns:
 //     The value of the specified System.Windows.Input.StylusPointProperty.
 //
 // Exceptions:
 //   System.ArgumentException:
 //     stylusPointProperty is not one of the properties in System.Windows.Input.StylusPoint.Description.
 public int GetPropertyValue(StylusPointProperty stylusPointProperty)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 //
 // Summary:
 //     Initializes a new instance of the System.Windows.Input.StylusPointPropertyInfo
 //     class using the specified values.
 //
 // Parameters:
 //   stylusPointProperty:
 //     The System.Windows.Input.StylusPointProperty to base the new System.Windows.Input.StylusPointProperty
 //     on.
 //
 //   minimum:
 //     The minimum value accepted for the System.Windows.Input.StylusPoint property.
 //
 //   maximum:
 //     The maximum value accepted for the System.Windows.Input.StylusPoint property.
 //
 //   unit:
 //
 //   resolution:
 //     The scale that converts a System.Windows.Input.StylusPoint property value
 //     into its units.
 public StylusPointPropertyInfo(StylusPointProperty stylusPointProperty, int minimum, int maximum, StylusPointPropertyUnit unit, float resolution)
     : base(stylusPointProperty)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 // Summary:
 //     Initializes a new instance of the System.Windows.Input.StylusPointPropertyInfo
 //     class.
 //
 // Parameters:
 //   stylusPointProperty:
 //     The System.Windows.Input.StylusPointProperty to base the new System.Windows.Input.StylusPointProperty
 //     on.
 public StylusPointPropertyInfo(StylusPointProperty stylusPointProperty) : base(stylusPointProperty)
 {
     throw new NotImplementedException();
 }