Stroke.DrawingAttributes Property

Definition

Gets or sets the DrawingAttributes for the Stroke object.

public:
 property System::Windows::Ink::DrawingAttributes ^ DrawingAttributes { System::Windows::Ink::DrawingAttributes ^ get(); void set(System::Windows::Ink::DrawingAttributes ^ value); };
public System.Windows.Ink.DrawingAttributes DrawingAttributes { get; set; }
member this.DrawingAttributes : System.Windows.Ink.DrawingAttributes with get, set
Public Property DrawingAttributes As DrawingAttributes

Property Value

Exceptions

The set value is null.

Examples

The following example sets the DrawingAttributes to make a stroke green.

// Make the new stroke green.
myNewStroke.DrawingAttributes.Color = Colors.Green;
' Make the new stroke green.
myNewStroke.DrawingAttributes.Color = Colors.Green

Remarks

These attributes, such as color and width, are applied to the Stroke object as it is drawn.

Changing DrawingAttributes causes the DrawingAttributesChanged event to fire.

Applies to

See also