Beispiel #1
0
 //
 // Summary:
 //     Initializes a new instance of the System.Windows.Input.StylusPoint class
 //     using specified (x, y) coordinates, a pressureFactor, and additional parameters
 //     specified in the System.Windows.Input.StylusPointDescription.
 //
 // Parameters:
 //   x:
 //
 //   y:
 //
 //   pressureFactor:
 //     The amount of pressure applied to the System.Windows.Input.StylusPoint.
 //
 //   stylusPointDescription:
 //     A System.Windows.Input.StylusPointDescription that specifies the additional
 //     properties stored in the System.Windows.Input.StylusPoint.
 //
 //   additionalValues:
 //     An array of 32-bit signed integers that contains the values of the properties
 //     defined in stylusPointDescription.
 //
 // Exceptions:
 //   System.ArgumentOutOfRangeException:
 //     pressureFactor is less than 0 or greater than 1.-or-The values in additionalValues
 //     that correspond to button properties are not 0 or 1.
 //
 //   System.ArgumentException:
 //     The number of values in additionalValues does not match the number of properties
 //     in stylusPointDescription minus 3.
 public StylusPoint(double x, double y, float pressureFactor, StylusPointDescription stylusPointDescription, int[] additionalValues)
 {
     throw new NotImplementedException();
 }
 //
 // Summary:
 //     Initializes a new instance of the System.Windows.Input.StylusPointCollection
 //     class that contains the properties specified in the System.Windows.Input.StylusPointDescription.
 //
 // Parameters:
 //   stylusPointDescription:
 //     A System.Windows.Input.StylusPointDescription that specifies the additional
 //     properties stored in each System.Windows.Input.StylusPoint.
 //
 // Exceptions:
 //   System.ArgumentNullException:
 //     stylusPointDescription is null.
 public StylusPointCollection(StylusPointDescription stylusPointDescription)
 {
     throw new NotImplementedException();
 }
 //
 // Summary:
 //     Returns a System.Windows.Input.StylusPointCollection that contains System.Windows.Input.StylusPoint
 //     objects collected from the stylus. Uses the specified System.Windows.Input.StylusPointDescription.
 //
 // Parameters:
 //   relativeTo:
 //     The System.Windows.IInputElement to which the (x y) coordinates in the System.Windows.Input.StylusPointCollection
 //     are mapped.
 //
 //   subsetToReformatTo:
 //     The System.Windows.Input.StylusPointDescription to be used by the System.Windows.Input.StylusPointCollection.
 //
 // Returns:
 //     A System.Windows.Input.StylusPointCollection that contains System.Windows.Input.StylusPoint
 //     objects collected from the stylus.
 //
 // Exceptions:
 //   System.InvalidOperationException:
 //     relativeTo is neither System.Windows.UIElement or System.Windows.FrameworkContentElement.
 public StylusPointCollection GetStylusPoints(IInputElement relativeTo, StylusPointDescription subsetToReformatTo)
 {
     throw new NotImplementedException();
 }
 //
 // Summary:
 //     Finds the intersection of the specified System.Windows.Input.StylusPointDescription
 //     and the System.Windows.Input.StylusPointCollection.Description property.
 //
 // Parameters:
 //   subsetToReformatTo:
 //     A System.Windows.Input.StylusPointDescription to intersect with the System.Windows.Input.StylusPointDescription
 //     of the current System.Windows.Input.StylusPointCollection.
 //
 // Returns:
 //     A System.Windows.Input.StylusPointCollection that has a System.Windows.Input.StylusPointDescription
 //     that is a subset of the specified System.Windows.Input.StylusPointDescription
 //     and the System.Windows.Input.StylusPointDescription that the current System.Windows.Input.StylusPointCollection
 //     uses.
 //
 // Exceptions:
 //   System.ArgumentException:
 //     subsetToReformatTo is not a subset of the System.Windows.Input.StylusPointCollection.Description
 //     property.
 public StylusPointCollection Reformat(StylusPointDescription subsetToReformatTo)
 {
     throw new NotImplementedException();
 }
 //
 // Summary:
 //     Initializes a new instance of the System.Windows.Input.StylusPointCollection
 //     class that is the specified size and contains the properties specified in
 //     the System.Windows.Input.StylusPointDescription.
 //
 // Parameters:
 //   stylusPointDescription:
 //     A System.Windows.Input.StylusPointDescription that specifies the additional
 //     properties stored in each System.Windows.Input.StylusPoint.
 //
 //   initialCapacity:
 //     The number of System.Windows.Input.StylusPoint objects the System.Windows.Input.StylusPointCollection
 //     can initially contain.
 //
 // Exceptions:
 //   System.ArgumentException:
 //     initialCapacity is negative.
 //
 //   System.ArgumentNullException:
 //     stylusPointDescription is null.
 public StylusPointCollection(StylusPointDescription stylusPointDescription, int initialCapacity)
 {
     throw new NotImplementedException();
 }
Beispiel #6
0
 //
 // Summary:
 //     Returns the intersection of the specified System.Windows.Input.StylusPointDescription
 //     objects.
 //
 // Parameters:
 //   stylusPointDescription:
 //
 //   stylusPointDescriptionPreserveInfo:
 //     The second System.Windows.Input.StylusPointDescription to intersect.
 //
 // Returns:
 //     A System.Windows.Input.StylusPointDescription that contains the properties
 //     that are present if both of the specified System.Windows.Input.StylusPointDescription
 //     objects.
 public static StylusPointDescription GetCommonDescription(StylusPointDescription stylusPointDescription, StylusPointDescription stylusPointDescriptionPreserveInfo)
 {
     throw new NotImplementedException();
 }
Beispiel #7
0
 // Summary:
 //     Returns a value that indicates whether the specified System.Windows.Input.StylusPointDescription
 //     objects are identical.
 //
 // Parameters:
 //   stylusPointDescription1:
 //     The first System.Windows.Input.StylusPointDescription to check.
 //
 //   stylusPointDescription2:
 //     The second System.Windows.Input.StylusPointDescription to check.
 //
 // Returns:
 //     true if the System.Windows.Input.StylusPointDescription objects are identical;
 //     otherwise, false.
 public static bool AreCompatible(StylusPointDescription stylusPointDescription1, StylusPointDescription stylusPointDescription2)
 {
     throw new NotImplementedException();
 }
Beispiel #8
0
 //
 // Summary:
 //     Returns a value that indicates whether the current System.Windows.Input.StylusPointDescription
 //     is a subset of the specified System.Windows.Input.StylusPointDescription.
 //
 // Parameters:
 //   stylusPointDescriptionSuperset:
 //     The System.Windows.Input.StylusPointDescription against which to check whether
 //     the current System.Windows.Input.StylusPointDescription is a subset.
 //
 // Returns:
 //     true if the current System.Windows.Input.StylusPointDescription is a subset
 //     of the specified System.Windows.Input.StylusPointDescription; otherwise,
 //     false.
 public bool IsSubsetOf(StylusPointDescription stylusPointDescriptionSuperset)
 {
     throw new NotImplementedException();
 }