DataFormats.GetDataFormat 方法

定义

为指定的数据格式返回定义名称和数字 ID 的 DataFormat 对象。

重载

GetDataFormat(Int32)

为指定的数据格式返回定义名称和数字 ID 的 DataFormat 对象。 所需的数据格式由数字 ID 指定。

GetDataFormat(String)

为指定的数据格式返回定义名称和数字 ID 的 DataFormat 对象。 所需的数据格式由名称(字符串)指定。

注解

此方法还可用于注册新格式。 如果找不到指定的格式,则会自动将其注册为新的数据格式。

GetDataFormat(Int32)

为指定的数据格式返回定义名称和数字 ID 的 DataFormat 对象。 所需的数据格式由数字 ID 指定。

public:
 static System::Windows::DataFormat ^ GetDataFormat(int id);
public static System.Windows.DataFormat GetDataFormat (int id);
static member GetDataFormat : int -> System.Windows.DataFormat
Public Shared Function GetDataFormat (id As Integer) As DataFormat

参数

id
Int32

为其请求 DataFormat 对象的数据格式的数字 ID。

返回

DataFormat

一个 DataFormat 对象,包含请求的数据格式的数字 ID 和名称。

注解

此方法还可用于注册新格式。 如果找不到指定的格式,则会自动将其注册为新的数据格式。

适用于

GetDataFormat(String)

为指定的数据格式返回定义名称和数字 ID 的 DataFormat 对象。 所需的数据格式由名称(字符串)指定。

public:
 static System::Windows::DataFormat ^ GetDataFormat(System::String ^ format);
[System.Security.SecurityCritical]
public static System.Windows.DataFormat GetDataFormat (string format);
public static System.Windows.DataFormat GetDataFormat (string format);
[<System.Security.SecurityCritical>]
static member GetDataFormat : string -> System.Windows.DataFormat
static member GetDataFormat : string -> System.Windows.DataFormat
Public Shared Function GetDataFormat (format As String) As DataFormat

参数

format
String

为其请求 DataFormat 对象的数据格式的名称。

返回

DataFormat

一个 DataFormat 对象,包含请求的数据格式的数字 ID 和名称。

属性

例外

formatnull

注解

此方法还可用于注册新格式。 如果找不到指定的格式,则会自动将其注册为新的数据格式。

另请参阅

适用于