DependencyPropertyDescriptor.FromName メソッド

定義

指定されたプロパティ名の DependencyPropertyDescriptor を返します。

オーバーロード

FromName(String, Type, Type)

指定されたプロパティ名の DependencyPropertyDescriptor を返します。

FromName(String, Type, Type, Boolean)

指定されたプロパティ名の DependencyPropertyDescriptor を返します。

FromName(String, Type, Type)

指定されたプロパティ名の DependencyPropertyDescriptor を返します。

public:
 static System::ComponentModel::DependencyPropertyDescriptor ^ FromName(System::String ^ name, Type ^ ownerType, Type ^ targetType);
public static System.ComponentModel.DependencyPropertyDescriptor FromName (string name, Type ownerType, Type targetType);
static member FromName : string * Type * Type -> System.ComponentModel.DependencyPropertyDescriptor
Public Shared Function FromName (name As String, ownerType As Type, targetType As Type) As DependencyPropertyDescriptor

パラメーター

name
String

依存関係プロパティまたは添付プロパティの登録済みの名前。

ownerType
Type

プロパティ定義を所有するオブジェクトの Type

targetType
Type

プロパティを設定するオブジェクトの Type

戻り値

要求された DependencyPropertyDescriptor

注釈

name依存関係プロパティまたは添付プロパティを参照する可能性があり、対象の プロパティをname定義した または RegisterAttached 呼び出しにRegister渡されるパラメーターです。 ownerTypeは、 または RegisterAttachedに渡されたプロパティを所有するRegisterオブジェクトの型です。 targetType は、プロパティを設定するオブジェクトの種類です。 依存関係プロパティの場合、 ownerTypetargetType は同じ型です。 添付プロパティの場合、通常は異なります。

適用対象

FromName(String, Type, Type, Boolean)

指定されたプロパティ名の DependencyPropertyDescriptor を返します。

public:
 static System::ComponentModel::DependencyPropertyDescriptor ^ FromName(System::String ^ name, Type ^ ownerType, Type ^ targetType, bool ignorePropertyType);
public static System.ComponentModel.DependencyPropertyDescriptor FromName (string name, Type ownerType, Type targetType, bool ignorePropertyType);
static member FromName : string * Type * Type * bool -> System.ComponentModel.DependencyPropertyDescriptor
Public Shared Function FromName (name As String, ownerType As Type, targetType As Type, ignorePropertyType As Boolean) As DependencyPropertyDescriptor

パラメーター

name
String

依存関係プロパティまたは添付プロパティの登録済みの名前。

ownerType
Type

プロパティ定義を所有するオブジェクトの Type

targetType
Type

プロパティを設定するオブジェクトの Type

ignorePropertyType
Boolean

プロパティの型を無視するように指定します。

戻り値

要求された DependencyPropertyDescriptor

注釈

name依存関係プロパティまたは添付プロパティを参照する可能性があり、対象の プロパティをname定義した または RegisterAttached 呼び出しにRegister渡されるパラメーターです。 ownerTypeは、 または RegisterAttachedに渡されたプロパティを所有するRegisterオブジェクトの型です。 targetType は、プロパティを設定するオブジェクトの種類です。 依存関係プロパティの場合、 ownerTypetargetType は同じ型です。 添付プロパティの場合、通常は異なります。

適用対象