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.

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

 

Attempts to convert a Rect to the specified type.

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

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

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext^

Provides contextual information required for conversion.

culture
Type: System.Globalization::CultureInfo^

Cultural information which is respected during conversion.

value
Type: System::Object^

The Rect to convert.

destinationType
Type: System::Type^

The type to convert this Rect to.

Return Value

Type: System::Object^

The object created from converting this Rect.

Exception Condition
NotSupportedException

value is null.

- or -

value is not a Rect.

- or -

The destinationType is not one of the valid types for conversion.

To determine whether a conversion is possible without actually performing the conversion, use the CanConvertTo method.

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