//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel {
using System.Diagnostics;
using System;
///
/// Specifies which values to say if property or event value can be bound to a data
/// element or another property or event's value.
///
public enum BindableSupport {
///
///
/// The property or event is bindable.
///
///
No = 0x00,
///
///
/// The property or event is not bindable.
///
///
Yes = 0x01,
///
///
/// The property or event is the default.
///
///
Default = 0x02,
}
}