Ink.CustomStrokes Property
Ink.CustomStrokes Property |
Gets the CustomStrokes collection to be persisted with the ink.
Definition
Visual Basic .NET Public ReadOnly Property CustomStrokes As CustomStrokes C# public CustomStrokes CustomStrokes { get; } Managed C++ public: __property CustomStrokes* get_CustomStrokes();
Property Value
Microsoft.Ink.CustomStrokes. The CustomStrokes collection to be persisted with the ink.
This property is read-only. This property has no default value.
Exceptions
ObjectDisposedException : The Ink object is disposed.
Examples
[C#]
This C# example gets the CustomStrokes collection, theCustomStrokes, of the Ink object within an InkCollector, theInkCollector.
CustomStrokes theCustomStrokes = theInkCollector.Ink.CustomStrokes;
[VB.NET]
This Microsoft® Visual Basic® .NET example gets the CustomStrokes collection, theCustomStrokes, of the Ink object within an InkCollector, theInkCollector.
Dim theCustomStrokes As CustomStrokes = theInkCollector.Ink.CustomStrokes
See Also