2 implementations of FInState
System.Windows.Forms (1)
System\Windows\Forms\Application.ComponentManager.cs (1)
194BOOL IMsoComponentManager.Interface.FInState(msocstate uStateID, void* pvoid)
System.Windows.Forms.Primitives (1)
Microsoft\Office\IMsoComponentManager.NativeAdapter.cs (1)
87BOOL Interface.FInState(msocstate uStateID, void* pvoid)
8 references to FInState
System.Windows.Forms.Primitives (3)
Microsoft\Office\IMsoComponentManager.cs (3)
140/// <inheritdoc cref="Interface.FInState(msocstate, void*)"/> 205/// that are outside of the component manager's state context. <see cref="FInState"/> is used to query the 419/// otherwise return <see cref="BOOL.FALSE"/> (ie. return what <see cref="FInState"/> would return).
System.Windows.Forms.Tests (5)
System\Windows\Forms\Application.ComponentManagerTests.cs (5)
238Assert.True(manager.FInState(0, null)); 240Assert.False(manager.FInState(0, null)); 241Assert.True(manager.FInState(msocstate.Modal, null)); 243Assert.True(manager.FInState(msocstate.Recording, null)); 245Assert.True(manager.FInState(0, null));