共用方式為


ImageConverter.ConvertTo 方法

定義

Image (或可以轉換成 Image 的物件) 轉換為指定型別。

public:
 override System::Object ^ ConvertTo(System::ComponentModel::ITypeDescriptorContext ^ context, System::Globalization::CultureInfo ^ culture, System::Object ^ value, Type ^ destinationType);
public override object ConvertTo (System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType);
public override object ConvertTo (System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, Type destinationType);
override this.ConvertTo : System.ComponentModel.ITypeDescriptorContext * System.Globalization.CultureInfo * obj * Type -> obj
Public Overrides Function ConvertTo (context As ITypeDescriptorContext, culture As CultureInfo, value As Object, destinationType As Type) As Object

參數

context
ITypeDescriptorContext

格式子 (Formatter) 內容。 這個物件可用來取得環境的更多資訊,而這個轉換子就是從這個環境叫用的。 這可能是 null,所以您要隨時檢查。 此外,內容物件上的屬性也可能會傳回 null

culture
CultureInfo

CultureInfo 物件,這個物件指定由特定文化特性 (Culture) 所使用的格式慣例。

value
Object

要進行轉換的 Image

destinationType
Type

要將 Type 轉換成的目的 Image

傳回

這個方法傳回轉換過的物件。

例外狀況

無法完成轉換作業。

備註

最常見的類型轉換是從字串類型來回轉換。 如果物件有效且目的型別為字串,則默認實作會呼叫 ToString 物件的方法。 如果這個方法無法將指定的物件轉換為目的地類型,則會擲回 NotSupportedException 例外狀況。

適用於