IDataObject.GetData 方法

定义

检索指定数据格式的数据对象。

重载

GetData(String)

检索指定格式的数据对象;数据格式由字符串指定。

GetData(Type)

检索指定格式的数据对象;数据格式由 Type 对象指定。

GetData(String, Boolean)

检索指定格式的数据对象,可选择将数据转换为指定格式。

GetData(String)

检索指定格式的数据对象;数据格式由字符串指定。

public:
 System::Object ^ GetData(System::String ^ format);
[System.Security.SecurityCritical]
public object GetData (string format);
public object GetData (string format);
[<System.Security.SecurityCritical>]
abstract member GetData : string -> obj
abstract member GetData : string -> obj
Public Function GetData (format As String) As Object

参数

format
String

一个字符串,指定要检索什么格式的数据。 请参见 DataFormats 类以了解预定义数据格式的集合。

返回

Object

一个数据对象,其中包含指定格式的数据;如果指定格式的数据不可用,则为 NULL。

属性

注解

有关此方法的实现,请参阅 GetData

另请参阅

适用于

GetData(Type)

检索指定格式的数据对象;数据格式由 Type 对象指定。

public:
 System::Object ^ GetData(Type ^ format);
[System.Security.SecurityCritical]
public object GetData (Type format);
public object GetData (Type format);
[<System.Security.SecurityCritical>]
abstract member GetData : Type -> obj
abstract member GetData : Type -> obj
Public Function GetData (format As Type) As Object

参数

format
Type

一个 Type 对象,指定要检索什么格式的数据。 请参见 DataFormats 类以了解预定义数据格式的集合。

返回

Object

一个数据对象,其中包含指定格式的数据;如果指定格式的数据不可用,则为 NULL。

属性

注解

有关此方法的实现,请参阅 GetData

另请参阅

适用于

GetData(String, Boolean)

检索指定格式的数据对象,可选择将数据转换为指定格式。

public:
 System::Object ^ GetData(System::String ^ format, bool autoConvert);
[System.Security.SecurityCritical]
public object GetData (string format, bool autoConvert);
public object GetData (string format, bool autoConvert);
[<System.Security.SecurityCritical>]
abstract member GetData : string * bool -> obj
abstract member GetData : string * bool -> obj
Public Function GetData (format As String, autoConvert As Boolean) As Object

参数

format
String

一个字符串,指定要检索什么格式的数据。 请参见 DataFormats 类以了解预定义数据格式的集合。

autoConvert
Boolean

若尝试自动将数据转换为指定格式,则为 true;若不进行数据格式转换,则为 false

如果此参数为 false,方法将返回指定格式的数据(如果有),或者,如果指定格式的数据不可用,则返回 null

返回

Object

一个数据对象,其中包含指定格式的数据;如果指定格式的数据不可用,则为 NULL。

属性

注解

有关此方法的实现,请参阅 GetData

另请参阅

适用于