MergablePropertyAttribute クラス
アセンブリ: System (system.dll 内)

<AttributeUsageAttribute(AttributeTargets.All)> _ Public NotInheritable Class MergablePropertyAttribute Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.All)] public sealed class MergablePropertyAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All)] public ref class MergablePropertyAttribute sealed : public Attribute

MergablePropertyAttribute に true を設定してマークされているプロパティは、他のオブジェクトに属するプロパティと [プロパティ] ウィンドウ内で組み合わせることができます。MergablePropertyAttribute に false を設定してマークされているプロパティは、個別に表示する必要があります。既定値は true です。
![]() |
---|
MergablePropertyAttribute に true を設定してプロパティをマークすると、この属性の値は定数メンバ Yes に設定されます。MergablePropertyAttribute プロパティに false を設定してマークされたプロパティの場合、値は No になります。したがって、コード内でこの属性の値を確認する場合は、属性を MergablePropertyAttribute.Yes または MergablePropertyAttribute.No として指定する必要があります。 |

プロパティを組み合わせできるとしてマークする例を次に示します。
<MergableProperty(True)> _ Public Property MyProperty() As Integer Get ' Insert code here. Return 0 End Get Set ' Insert code here. End Set End Property
[MergableProperty(true)] public int MyProperty { get { // Insert code here. return 0; } set { // Insert code here. } }
public: [MergableProperty(true)] property int MyProperty { int get() { // Insert code here. return 0; } void set( int value ) { // Insert code here. } }
/** @attribute MergableProperty(true) */ /** @property */ public int get_MyProperty() { // Insert code here. return 0; } //get_MyProperty /** @property */ public void set_MyProperty(int value) { // Insert code here. } //set_MyProperty
public MergableProperty(true) function get MyProperty() : int{ // Insert code here. return 0 } function set MyProperty(value : int){ // Insert code here. }
MyProperty の MergablePropertyAttribute の値を確認する方法を次の例に示します。最初に、オブジェクトのすべてのプロパティを保持する PropertyDescriptorCollection を取得します。次に、インデックスを付けて PropertyDescriptorCollection から MyProperty を取得します。そして、このプロパティの属性を返し、その属性を属性変数に保存します。
この例では、MergablePropertyAttribute の値を確認する 2 種類の方法を示します。2 番目のコード片では、static を使用して Equals メソッドを呼び出します。最後のコード片では、AllowMerge プロパティを使用して値を確認します。
' Gets the attributes for the property. Dim attributes As AttributeCollection = _ TypeDescriptor.GetProperties(Me)("MyProperty").Attributes ' Checks to see if the value of the MergablePropertyAttribute is Yes. If attributes(GetType(MergablePropertyAttribute)).Equals(MergablePropertyAttribute.Yes) Then ' Insert code here. End If ' This is another way to see if the property is bindable. Dim myAttribute As MergablePropertyAttribute = _ CType(attributes(GetType(MergablePropertyAttribute)), MergablePropertyAttribute) If myAttribute.AllowMerge Then ' Insert code here. End If
// Gets the attributes for the property. AttributeCollection attributes = TypeDescriptor.GetProperties(this)["MyProperty"].Attributes; // Checks to see if the value of the MergablePropertyAttribute is Yes. if(attributes[typeof(MergablePropertyAttribute)].Equals(MergablePropertyAttribute.Yes)) { // Insert code here. } // This is another way to see if the property is bindable. MergablePropertyAttribute myAttribute = (MergablePropertyAttribute)attributes[typeof(MergablePropertyAttribute)]; if(myAttribute.AllowMerge) { // Insert code here. }
// Gets the attributes for the property. AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes; // Checks to see if the value of the MergablePropertyAttribute is Yes. if ( attributes[ MergablePropertyAttribute::typeid ]->Equals( MergablePropertyAttribute::Yes ) ) { // Insert code here. } // This is another way to see if the property is bindable. MergablePropertyAttribute^ myAttribute = dynamic_cast<MergablePropertyAttribute^>(attributes[ MergablePropertyAttribute::typeid ]); if ( myAttribute->AllowMerge ) { // Insert code here. }
// Gets the attributes for the property. AttributeCollection attributes = TypeDescriptor.GetProperties(this).get_Item( "MyProperty").get_Attributes(); // Checks to see if the value of the MergablePropertyAttribute is Yes. if (attributes.get_Item( MergablePropertyAttribute.class.ToType()).Equals (MergablePropertyAttribute.Yes)) { // Insert code here. } // This is another way to see if the property is bindable. MergablePropertyAttribute myAttribute = ((MergablePropertyAttribute) (attributes.get_Item(MergablePropertyAttribute.class.ToType()))); if (myAttribute.get_AllowMerge()) { // Insert code here. }
// Gets the attributes for the property. var attributes : AttributeCollection = TypeDescriptor.GetProperties(this)["MyProperty"].Attributes // Checks to see if the value of the MergablePropertyAttribute is Yes. if(attributes(MergablePropertyAttribute).Equals(MergablePropertyAttribute.Yes)){ // Insert code here. } // This is another way to see if the property is bindable. var myAttribute : MergablePropertyAttribute = MergablePropertyAttribute(attributes(MergablePropertyAttribute)) if(myAttribute.AllowMerge){ // Insert code here. }
MergablePropertyAttribute を使用してクラスをマークした場合は、次のコードを使用して値を確認します。
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(MyProperty) If attributes(GetType(MergablePropertyAttribute)).Equals(MergablePropertyAttribute.Yes) Then ' Insert code here. End If
AttributeCollection attributes = TypeDescriptor.GetAttributes(MyProperty); if(attributes[typeof(MergablePropertyAttribute)].Equals(MergablePropertyAttribute.Yes)) { // Insert code here. }
AttributeCollection^ attributes = TypeDescriptor::GetAttributes( MyProperty ); if ( attributes[ MergablePropertyAttribute::typeid ]->Equals( MergablePropertyAttribute::Yes ) ) { // Insert code here. }
AttributeCollection attributes = TypeDescriptor.GetAttributes("MyProperty"); if (attributes.get_Item( MergablePropertyAttribute.class.ToType()).Equals( MergablePropertyAttribute.Yes)) { // Insert code here. }
var attributes : AttributeCollection = TypeDescriptor.GetAttributes(MyProperty) if(attributes(MergablePropertyAttribute).Equals(MergablePropertyAttribute.Yes)){ // Insert code here. }

System.Attribute
System.ComponentModel.MergablePropertyAttribute


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


MergablePropertyAttribute コンストラクタ
アセンブリ: System (system.dll 内)


プロパティを組み合わせできるとしてマークする例を次に示します。このコードは、新しい MergablePropertyAttribute を作成し、その値を MergablePropertyAttribute.Yes に設定してから、その属性をプロパティに関連付けます。
<MergableProperty(True)> _ Public Property MyProperty() As Integer Get ' Insert code here. Return 0 End Get Set ' Insert code here. End Set End Property
[MergableProperty(true)] public int MyProperty { get { // Insert code here. return 0; } set { // Insert code here. } }
public: [MergableProperty(true)] property int MyProperty { int get() { // Insert code here. return 0; } void set( int value ) { // Insert code here. } }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


MergablePropertyAttribute フィールド

名前 | 説明 | |
---|---|---|
![]() | Default | 既定値 Yes を指定します。この既定値は、[プロパティ] ウィンドウ内で別のオブジェクトに属するプロパティと組み合わせることができるプロパティです。static フィールドは読み取り専用です。 |
![]() | No | [プロパティ] ウィンドウ内で、プロパティを別のオブジェクトに属するプロパティとは組み合わせることができないことを指定します。static フィールドは読み取り専用です。 |
![]() | Yes | [プロパティ] ウィンドウ内で、プロパティを別のオブジェクトに属するプロパティとは組み合わせることができることを指定します。static フィールドは読み取り専用です。 |

関連項目
MergablePropertyAttribute クラスSystem.ComponentModel 名前空間
PropertyDescriptor
AttributeCollection クラス
PropertyDescriptorCollection
Attribute
MergablePropertyAttribute プロパティ

名前 | 説明 | |
---|---|---|
![]() | AllowMerge | [プロパティ] ウィンドウ内で、プロパティを別のオブジェクトに属するプロパティと組み合わせることができるかどうかを示す値を取得します。 |
![]() | TypeId | 派生クラスに実装されている場合は、この Attribute の一意の識別子を取得します。 ( Attribute から継承されます。) |

関連項目
MergablePropertyAttribute クラスSystem.ComponentModel 名前空間
PropertyDescriptor
AttributeCollection クラス
PropertyDescriptorCollection
Attribute
MergablePropertyAttribute メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 オーバーライドされます。 このインスタンスと指定したオブジェクトが等しいかどうかを示します。 |
![]() | GetCustomAttribute | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用された指定した型のカスタム属性を取得します。 ( Attribute から継承されます。) |
![]() | GetCustomAttributes | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されたカスタム属性の配列を取得します。 ( Attribute から継承されます。) |
![]() | GetHashCode | オーバーライドされます。 対象のインスタンスのハッシュ コードを返します。 |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | IsDefaultAttribute | オーバーライドされます。 この属性が既定値かどうかを判断します。 |
![]() | IsDefined | オーバーロードされます。 指定した型のカスタム属性が、アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されているかどうかを判断します。 ( Attribute から継承されます。) |
![]() | Match | 派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。 ( Attribute から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

関連項目
MergablePropertyAttribute クラスSystem.ComponentModel 名前空間
PropertyDescriptor
AttributeCollection クラス
PropertyDescriptorCollection
Attribute
MergablePropertyAttribute メンバ
[プロパティ] ウィンドウ内で、プロパティをほかのオブジェクトに属するプロパティと組み合わせることができることを指定します。
MergablePropertyAttribute データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Default | 既定値 Yes を指定します。この既定値は、[プロパティ] ウィンドウ内で別のオブジェクトに属するプロパティと組み合わせることができるプロパティです。static フィールドは読み取り専用です。 |
![]() | No | [プロパティ] ウィンドウ内で、プロパティを別のオブジェクトに属するプロパティとは組み合わせることができないことを指定します。static フィールドは読み取り専用です。 |
![]() | Yes | [プロパティ] ウィンドウ内で、プロパティを別のオブジェクトに属するプロパティとは組み合わせることができることを指定します。static フィールドは読み取り専用です。 |

名前 | 説明 | |
---|---|---|
![]() | AllowMerge | [プロパティ] ウィンドウ内で、プロパティを別のオブジェクトに属するプロパティと組み合わせることができるかどうかを示す値を取得します。 |
![]() | TypeId | 派生クラスに実装されている場合は、この Attribute の一意の識別子を取得します。(Attribute から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 オーバーライドされます。 このインスタンスと指定したオブジェクトが等しいかどうかを示します。 |
![]() | GetCustomAttribute | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用された指定した型のカスタム属性を取得します。 (Attribute から継承されます。) |
![]() | GetCustomAttributes | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されたカスタム属性の配列を取得します。 (Attribute から継承されます。) |
![]() | GetHashCode | オーバーライドされます。 対象のインスタンスのハッシュ コードを返します。 |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | IsDefaultAttribute | オーバーライドされます。 この属性が既定値かどうかを判断します。 |
![]() | IsDefined | オーバーロードされます。 指定した型のカスタム属性が、アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されているかどうかを判断します。 (Attribute から継承されます。) |
![]() | Match | 派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。 (Attribute から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

関連項目
MergablePropertyAttribute クラスSystem.ComponentModel 名前空間
PropertyDescriptor
AttributeCollection クラス
PropertyDescriptorCollection
Attribute
- MergablePropertyAttributeのページへのリンク