X (StylusPoint)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets or sets the x-coordinate of a StylusPoint in pixels.

<object X="Double"  .../>
value = object.X
object.X = value

Property Value

Type: Double

The x-coordinate of the StylusPoint in pixels.

This property is read/write. The default value is 0.

Managed Equivalent

X

Remarks

Specifying a StylusPoint in initial XAML is possible, but uncommon.

Example

In the following example, the x-coordinate and y-coordinate of each StylusPoint are sent to a text TextBlock as they are added to a stroke.

// Add the new points to the Stroke we're working with, and display the StylusPoint coordinates.
function InkPresenterMouseMove(sender,args)
{
   if (newStroke != null)
   {
      newStroke.StylusPoints.AddStylusPoints(args.GetStylusPoints(inkPresenter));
      xCoord.Text = "" + args.GetStylusPoints(inkPresenter).GetItem(0).X;
      yCoord.Text = "" + args.GetStylusPoints(inkPresenter).GetItem(0).Y;
      pressureData.Text = "" + args.GetStylusPoints(inkPresenter).GetItem(0).PressureFactor;
   }
}

Applies To

StylusPoint