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.

StrokeCollectionConverter::ConvertTo Method (ITypeDescriptorContext^, CultureInfo^, Object^, Type^)

 

Converts a StrokeCollection to a string.

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

public:
[SecurityCriticalAttribute]
virtual Object^ ConvertTo(
	ITypeDescriptorContext^ context,
	CultureInfo^ culture,
	Object^ value,
	Type^ destinationType
) override

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext^

An ITypeDescriptorContext that provides a format context.

culture
Type: System.Globalization::CultureInfo^

The CultureInfo to use as the current culture.

value
Type: System::Object^

The Object to convert.

destinationType
Type: System::Type^

The Type to convert to.

Return Value

Type: System::Object^

An object that represents the specified StrokeCollection.

Exception Condition
ArgumentNullException

destinationType is null.

The ConvertTo method returns null if value is not a StrokeCollection, or if destinationType is not String or InstanceDescriptor.

The ConvertTo method returns a base-64, encoded Ink Serialized Format (ISF). It is useful to store ink data as base-64, encoded ISF when it is not possible to store raw byte data, such as in Web pages.

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