Redigera

Dela via


ITypedDataObject Interface

Definition

public interface class ITypedDataObject : System::Windows::Forms::IDataObject
public interface ITypedDataObject : System.Windows.Forms.IDataObject
type ITypedDataObject = interface
    interface IDataObject
Public Interface ITypedDataObject
Implements IDataObject
Derived
Implements

Methods

GetData(String, Boolean)

Retrieves the data associated with the specified data format, using a Boolean to determine whether to convert the data to the format.

(Inherited from IDataObject)
GetData(String)

Retrieves the data associated with the specified data format.

(Inherited from IDataObject)
GetData(Type)

Retrieves the data associated with the specified class type format.

(Inherited from IDataObject)
GetDataPresent(String, Boolean)

Determines whether data stored in this instance is associated with the specified format, using a Boolean value to determine whether to convert the data to the format.

(Inherited from IDataObject)
GetDataPresent(String)

Determines whether data stored in this instance is associated with, or can be converted to, the specified format.

(Inherited from IDataObject)
GetDataPresent(Type)

Determines whether data stored in this instance is associated with, or can be converted to, the specified format.

(Inherited from IDataObject)
GetFormats()

Returns a list of all formats that data stored in this instance is associated with or can be converted to.

(Inherited from IDataObject)
GetFormats(Boolean)

Gets a list of all formats that data stored in this instance is associated with or can be converted to, using a Boolean value to determine whether to retrieve all formats that the data can be converted to or only native data formats.

(Inherited from IDataObject)
SetData(Object)

Stores the specified data in this instance, using the class of the data for the format.

(Inherited from IDataObject)
SetData(String, Boolean, Object)

Stores the specified data and its associated format in this instance, using a Boolean value to specify whether the data can be converted to another format.

(Inherited from IDataObject)
SetData(String, Object)

Stores the specified data and its associated format in this instance.

(Inherited from IDataObject)
SetData(Type, Object)

Stores the specified data and its associated class type in this instance.

(Inherited from IDataObject)
TryGetData<T>(String, Boolean, T)
TryGetData<T>(String, Func<TypeName,Type>, Boolean, T)
TryGetData<T>(String, T)
TryGetData<T>(T)

Extension Methods

TryGetData<T>(IDataObject, T)
TryGetData<T>(IDataObject, String, T)
TryGetData<T>(IDataObject, String, Boolean, T)
TryGetData<T>(IDataObject, String, Func<TypeName,Type>, Boolean, T)

Applies to