DynamicRenderer.DrawingAttributes Property

Definition

Gets or sets the DrawingAttributes that specifies the appearance of the rendered ink.

public System.Windows.Ink.DrawingAttributes DrawingAttributes { get; set; }

Property Value

The DrawingAttributes that specifies the appearance of the rendered ink.

Examples

The following example demonstrates how to create a DrawingAttributes object for a DynamicRenderer. In this example, the dynamically rendered ink matches the properties specified by inkDA. To create a control that dynamically renders ink, see Creating an Ink Input Control.

// Create a DrawingAttributes to use for the 
// DynamicRenderer.
DrawingAttributes inkDA = new DrawingAttributes();
inkDA.Width = 5;
inkDA.Height = 5;
inkDA.Color = Colors.Purple;

// Add a dynamic renderer plugin that 
// draws ink as it "flows" from the stylus
DynamicRenderer dynamicRenderer1 = new DynamicRenderer();
dynamicRenderer1.DrawingAttributes = inkDA;

this.StylusPlugIns.Add(dynamicRenderer1);
inkPresenter1.AttachVisuals(dynamicRenderer1.RootVisual,
    dynamicRenderer1.DrawingAttributes);

Remarks

XAML Text Usage

This property is not typically used in XAML.

Applies to

Product Versions
.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