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
public Object ConvertTo (
	ITypeDescriptorContext context, 
	CultureInfo culture, 
	Object value, 
	Type destinationType
)
public override function ConvertTo (
	context : ITypeDescriptorContext, 
	culture : CultureInfo, 
	value : Object, 
	destinationType : Type
) : Object
Not applicable.

Parameters

context

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 a null reference (Nothing in Visual Basic) for this parameter.

culture

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 a null reference (Nothing in Visual Basic) for this parameter.

value

An object that represents the source array of strings to convert from.

destinationType

A System.Object instance object that represents the data type to convert to. This parameter must be of type String.

Return Value

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

Exception typeCondition

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 a null reference (Nothing in Visual Basic) 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.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: