Strokes.Ink Property

Strokes.Ink Property

Gets the Ink object that contains the Strokes collection.

Definition

Visual Basic .NET Public ReadOnly Property Ink As Ink
C# public Ink Ink { get; }
Managed C++ public: __property Ink* get_Ink();

Property Value

Microsoft.Ink.Ink. The Ink object that contains the Strokes collection.

This property is read-only. This property has no default value.

Exceptions

ObjectDisposedException Leave Site:

Examples

[C#]

This C# example returns the Ink object that contains the Strokes collection, theStrokes.

Ink theInk = theStrokes.Ink;

[Visual Basic .NET]

This Microsoft® Visual Basic® .NET example returns the Ink object that contains the Strokes collection, theStrokes.

Dim theInk As Ink = theStrokes.Ink

See Also