Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DrawingAttributes::StylusTipTransform Property

 

Gets or sets the Matrix that specifies the transformation to perform on the stylus' tip.

Namespace:   System.Windows.Ink
Assembly:  PresentationCore (in PresentationCore.dll)

public:
property Matrix StylusTipTransform {
	Matrix get();
	void set(Matrix value);
}

Property Value

Type: System.Windows.Media::Matrix

A Matrix that specifies the transformation to perform on the stylus' tip.

Exception Condition
ArgumentException

The matrix set to StylusTipTransform is not an invertible matrix.

-or-

The OffsetX or OffsetY property of the matrix is not zero.

Use the StylusTipTransform property to rotate, skew, or scale the stylus tip.

This property is not typically used in XAML.

The following example demonstrates how to set the StylusTipTransform property. The example assumes that your application has an InkCanvas called inkCanvas1, and two DrawingAttributes objects called inkDA and highlighterDA. For the complete example, see the DrawingAttributes class overview.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft