Version 3.3.0.1

DontApplyToListElementsAttribute class

Namespace: Sirenix.OdinInspector
Assembly: Sirenix.OdinInspector.Attributes
[AttributeUsage(AttributeTargets.Class)]
public sealed class DontApplyToListElementsAttribute : Attribute, _Attribute

DontApplyToListElements is used on other attributes, and indicates that those attributes should be applied only to the list, and not to the elements of the list.

Use this on attributes that should only work on a list or array property as a whole, and not on each element of the list.

Inheritance
  • System.Object
  • System.Attribute
  • DontApplyToListElementsAttribute
Example

The following example shows how DontApplyToListElements is used on ShowIfAttribute.

[DontApplyToListElements]
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
public sealed class VisibleIfAttribute : Attribute
{
    public string MemberName { get; private set; }

    public VisibleIfAttribute(string memberName)
    {
        this.MemberName = memberName;
    }
}

Constructors

DontApplyToListElementsAttribute()
public DontApplyToListElementsAttribute()