MergablePropertyAttribute 클래스

정의

이 속성을 속성 창에 있는 다른 개체의 속성과 결합할 수 있도록 지정합니다.

public ref class MergablePropertyAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.All)]
public sealed class MergablePropertyAttribute : Attribute
public sealed class MergablePropertyAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.All)>]
type MergablePropertyAttribute = class
    inherit Attribute
type MergablePropertyAttribute = class
    inherit Attribute
Public NotInheritable Class MergablePropertyAttribute
Inherits Attribute
상속
MergablePropertyAttribute
특성

예제

다음 예에서는 merge에 적합 한 속성을 표시 합니다.

public:
   [MergableProperty(true)]
   property int MyProperty 
   {
      int get()
      {
         // Insert code here.
         return 0;
      }
      void set( int value )
      {
         // Insert code here.
      }
   }
[MergableProperty(true)]
 public int MyProperty {
    get {
       // Insert code here.
       return 0;
    }
    set {
       // Insert code here.
    }
 }
<MergableProperty(True)> _
Public Property MyProperty() As Integer
    Get
        ' Insert code here.
        Return 0
    End Get
    Set
        ' Insert code here.
    End Set 
End Property

다음 예제에서는 값을 확인 하는 방법을 보여 줍니다 합니다 MergablePropertyAttribute 에 대 한 MyProperty합니다. 먼저 코드를 가져옵니다는 PropertyDescriptorCollection 개체에 대 한 모든 속성을 사용 하 여 합니다. 다음으로 인덱스는 PropertyDescriptorCollection 가져오려고 MyProperty합니다. 그런 다음이 속성에 대 한 특성을 반환 하 고 특성 변수에 저장 합니다.

이 예제에서는 값을 확인 하는 두 가지 방법을 제공 합니다 MergablePropertyAttribute합니다. 이 예제에서는 두 번째 코드 조각에서 호출 합니다 Equals 메서드를 static 값. 마지막 코드 조각에서 사용 하 여는 AllowMerge 속성 값을 확인 합니다.

// 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)["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.
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

사용 하 여 클래스를 표시 하는 경우는 MergablePropertyAttribute, 값을 확인 하려면 다음 코드를 사용 합니다.

AttributeCollection^ attributes = TypeDescriptor::GetAttributes( MyProperty );
if ( attributes[ MergablePropertyAttribute::typeid ]->Equals( MergablePropertyAttribute::Yes ) )
{
   // Insert code here.
}
AttributeCollection attributes = 
    TypeDescriptor.GetAttributes(MyProperty);
 if(attributes[typeof(MergablePropertyAttribute)].Equals(MergablePropertyAttribute.Yes)) {
    // Insert code here.
 }
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(MyProperty)
If attributes(GetType(MergablePropertyAttribute)).Equals(MergablePropertyAttribute.Yes) Then
    ' Insert code here.
End If

설명

표시 된 속성을 MergablePropertyAttributetrue 속성 창에서 다른 개체의 속성과 결합할 수 있습니다. 표시 된 속성을 MergablePropertyAttributefalse 별도로 표시 되어야 합니다. 기본값은 true입니다.

참고

사용 하 여 속성을 표시 하는 경우는 MergablePropertyAttribute 로 설정 true,이 특성의 값은 상수 멤버로 Yes. 사용 하 여 표시 된 속성을 MergablePropertyAttribute 속성이로 설정 false, 값은 No합니다. 따라서 코드에서이 특성의 값을 확인 하려는 경우 특성으로 지정 해야 합니다 MergablePropertyAttribute.Yes 또는 MergablePropertyAttribute.No합니다.

자세한 내용은 특성을 참조하세요.

생성자

MergablePropertyAttribute(Boolean)

MergablePropertyAttribute 클래스의 새 인스턴스를 초기화합니다.

필드

Default

속성을 속성 창에 있는 다른 개체의 속성과 결합할 수 있는 기본값 Yes를 지정합니다. 이 static 필드는 읽기 전용입니다.

No

이 속성을 속성 브라우저에 있는 다른 개체의 속성과 결합할 수 없도록 지정합니다. 이 static 필드는 읽기 전용입니다.

Yes

이 속성을 속성 창에 있는 다른 개체의 속성과 결합할 수 있도록 지정합니다. 이 static 필드는 읽기 전용입니다.

속성

AllowMerge

이 속성을 속성 창에 있는 다른 개체의 속성과 결합할 수 있는지 여부를 나타내는 값을 가져옵니다.

TypeId

파생 클래스에서 구현된 경우 이 Attribute에 대한 고유 식별자를 가져옵니다.

(다음에서 상속됨 Attribute)

메서드

Equals(Object)

이 인스턴스와 지정된 개체가 같은지 여부를 나타냅니다.

GetHashCode()

이 인스턴스의 해시 코드를 반환합니다.

GetType()

현재 인스턴스의 Type을 가져옵니다.

(다음에서 상속됨 Object)
IsDefaultAttribute()

이 특성이 기본값인지 여부를 확인합니다.

IsDefaultAttribute()

파생 클래스에서 재정의된 경우 이 인스턴스 값이 파생 클래스에 대한 기본값인지 여부를 표시합니다.

(다음에서 상속됨 Attribute)
Match(Object)

파생 클래스에서 재정의된 경우 이 인스턴스가 지정된 개체와 같은지 여부를 나타내는 값을 반환합니다.

(다음에서 상속됨 Attribute)
MemberwiseClone()

현재 Object의 단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

명시적 인터페이스 구현

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

이름 집합을 해당하는 디스패치 식별자 집합에 매핑합니다.

(다음에서 상속됨 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

인터페이스의 형식 정보를 가져오는 데 사용할 수 있는 개체의 형식 정보를 검색합니다.

(다음에서 상속됨 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

개체에서 제공하는 형식 정보 인터페이스의 수를 검색합니다(0 또는 1).

(다음에서 상속됨 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

개체에서 노출하는 메서드와 속성에 대한 액세스를 제공합니다.

(다음에서 상속됨 Attribute)

적용 대상

추가 정보