File: System\Windows\Automation\ExpandCollapseState.cs
Project: UIAutomationTypes.dll (UIAutomationTypes)
#region Assembly UIAutomationTypes, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\UIAutomationTypes.dll
#endregion
 
using System.Runtime.InteropServices;
 
namespace System.Windows.Automation
{
    [ComVisible(true)]
    [Guid("76d12d7e-b227-4417-9ce2-42642ffa896a")]
    public enum ExpandCollapseState
    {
        Collapsed = 0,
        Expanded = 1,
        PartiallyExpanded = 2,
        LeafNode = 3
    }
}