|
#region Assembly UIAutomationProvider, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\UIAutomationProvider.dll
#endregion
using System.Runtime.InteropServices;
namespace System.Windows.Automation.Provider
{
[ComVisible(true)]
[Guid("d847d3a5-cab0-4a98-8c32-ecb45c59ad24")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IExpandCollapseProvider
{
ExpandCollapseState ExpandCollapseState { get; }
void Collapse();
void Expand();
}
} |