2 implementations of FSetTrackingComponent
System.Windows.Forms (1)
System\Windows\Forms\Application.ComponentManager.cs (1)
138BOOL IMsoComponentManager.Interface.FSetTrackingComponent(nuint dwComponentID, BOOL fTrack)
System.Windows.Forms.Primitives (1)
Microsoft\Office\IMsoComponentManager.NativeAdapter.cs (1)
58BOOL Interface.FSetTrackingComponent(nuint dwComponentID, BOOL fTrack)
10 references to FSetTrackingComponent
System.Windows.Forms (1)
System\Windows\Forms\Application.ComponentThreadContext.cs (1)
220manager.FSetTrackingComponent(_componentID, track);
System.Windows.Forms.Primitives (1)
Microsoft\Office\IMsoComponentManager.cs (1)
105/// <inheritdoc cref="Interface.FSetTrackingComponent(nuint, BOOL)"/>
System.Windows.Forms.Tests (8)
System\Windows\Forms\Application.ComponentManagerTests.cs (8)
143Assert.False(manager.FSetTrackingComponent(default, true)); 144Assert.False(manager.FSetTrackingComponent(default, false)); 160Assert.True(manager.FSetTrackingComponent(id, true)); 163Assert.False(manager.FSetTrackingComponent(id, true)); 165Assert.True(manager.FSetTrackingComponent(id, false)); 168Assert.False(manager.FSetTrackingComponent(id, false)); 169Assert.True(manager.FSetTrackingComponent(id, true)); 326Assert.True(manager.FSetTrackingComponent(secondId, true));