//
// ProjectData.cs
//
// Author:
// Martin Adoue (martin@cwanet.com)
//
// (C) 2002 Martin Adoue
//
using System;
namespace System.ComponentModel
{
///
/// Specifies the browsable state of a property or method from within an editor.
///
public enum EditorBrowsableState
{
///
/// The property or method is always browsable from within an editor.
///
Always = 0,
///
/// The property or method is never browsable from within an editor.
///
Never = 1,
///
/// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.
///
Advanced = 2
}
}