This documentation is archived and is not being maintained.

FontNamesConverter::ConvertTo Method (ITypeDescriptorContext, CultureInfo, Object, Type)

Creates a string that represents a list of font names from an array of strings containing individual font names.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

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

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext
A System.ComponentModel::ITypeDescriptorContext object that provides information about the context of a type converter. This parameter is not used in this method. It is reserved for future versions of this method. You can optionally pass in nullptr for this parameter.
culture
Type: System.Globalization::CultureInfo
A System.Globalization::CultureInfo object that represents information about a culture such as language, calendar system, and so on. This parameter is not used in this method. It is reserved for future versions of this method. You can optionally pass in nullptr for this parameter.
value
Type: System::Object
An object that represents the source array of strings to convert from.
destinationType
Type: System::Type
A System::Object instance object that represents the data type to convert to. This parameter must be of type String.

Return Value

Type: System::Object
A System::Object instance that represents a string containing a list of font names.

ExceptionCondition
GetConvertToException

destinationType is not of type String.

Use the ConvertTo method to convert an array of strings containing the individual font names to a single string containing a list of the names. For example, an array that contains the strings "arial", "times new roman", and "verdana" converts to the string "arial,times new roman,verdana". Notice that commas are automatically inserted between the font names without any white space.

NoteNote

This converter can convert only to a string data type. The destinationType parameter must be of type String.

NoteNote

The context and culture parameters are not used in this version of the method; they are reserved for future versions of the method. You can optionally pass in nullptr for these parameters.

The following code example demonstrates how to use the ConvertTo method to convert an array of strings containing the individual names to a single string that contains a list of font names.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: