NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

MergablePropertyAttribute Class

Specifies that this property can be combined with properties belonging to other objects in a property browser.

Object
   Attribute
      MemberAttribute
         MergablePropertyAttribute

[Visual Basic]
Public Class MergablePropertyAttribute
   Inherits MemberAttribute
[C#]
public class MergablePropertyAttribute : MemberAttribute
[C++]
public __gc class MergablePropertyAttribute : public
   MemberAttribute
[JScript]
public class MergablePropertyAttribute extends MemberAttribute

Remarks

Properties that are marked with MergableProperty(true) can be combined with oproperties belonging to other objects in a property browser. Properties that are marked with MergableProperty(false) must be displayed separately. The default is true.

Note   When you mark a property with MergableProperty(true), the value of this attribute is set to the constant member MergablePropertyAttribute.Yes. For a property marked with MergableProperty(false), the value is MergablePropertyAttribute.No. Therefore, when you want to check the value of this attribute in your code, you must specify the attribute as MergablePropertyAttribute.Yes or MergablePropertyAttribute.No.

For more information, see TBD and TBD.

Requirements

Namespace: System.ComponentModel

Assembly: System.dll

See Also

System.ComponentModel Namespace | MemberAttribute