Прочитај на енглеском Уреди

Делите путем


StylusPointDescription.IsSubsetOf(StylusPointDescription) Method

Definition

Returns a value that indicates whether the current StylusPointDescription is a subset of the specified StylusPointDescription.

C#
public bool IsSubsetOf(System.Windows.Input.StylusPointDescription stylusPointDescriptionSuperset);

Parameters

stylusPointDescriptionSuperset
StylusPointDescription

The StylusPointDescription against which to check whether the current StylusPointDescription is a subset.

Returns

true if the current StylusPointDescription is a subset of the specified StylusPointDescription; otherwise, false.

Examples

The following example checks whether description2 is a subset of description1.

C#
StylusPointDescription description1 =
      new StylusPointDescription(new StylusPointPropertyInfo[]
                    {
                        new StylusPointPropertyInfo(StylusPointProperties.X),
                        new StylusPointPropertyInfo(StylusPointProperties.Y),
                        new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
                        new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation),
                        new StylusPointPropertyInfo(StylusPointProperties.YTiltOrientation),
                        new StylusPointPropertyInfo(StylusPointProperties.BarrelButton)
                    });

StylusPointDescription description2 =
      new StylusPointDescription(new StylusPointPropertyInfo[]
                    {
                        new StylusPointPropertyInfo(StylusPointProperties.X),
                        new StylusPointPropertyInfo(StylusPointProperties.Y),
                        new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
                        new StylusPointPropertyInfo(StylusPointProperties.BarrelButton)
                    });
C#
if (description2.IsSubsetOf(description1))
{
    MessageBox.Show("description2 is a subset of description1.");
}
else
{
    MessageBox.Show("description2 is not a subset of description1.");
}

Applies to

Производ Верзије
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10