File: System\ComponentModel\BindableSupport.cs
Web Access
Project: src\src\libraries\System.ComponentModel.TypeConverter\src\System.ComponentModel.TypeConverter.csproj (System.ComponentModel.TypeConverter)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.ComponentModel
{
    /// <summary>
    /// Specifies which values to say if property or event value can be bound to a data
    /// element or another property or event's value.
    /// </summary>
    public enum BindableSupport
    {
        /// <summary>
        /// The property or event is bindable.
        /// </summary>
        No = 0x00,
 
        /// <summary>
        /// The property or event is not bindable.
        /// </summary>
        Yes = 0x01,
 
        /// <summary>
        /// The property or event is the default.
        /// </summary>
        Default = 0x02,
    }
}