11 references to GetFlowBreak
System.Windows.Forms (2)
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
61return _flowLayoutSettings.GetFlowBreak(control);
System\Windows\Forms\Panels\FlowLayoutSettings.cs (1)
50if (GetFlowBreak(child) != value)
System.Windows.Forms.Tests (9)
System\Windows\Forms\FlowLayoutSettingsTests.cs (9)
100Assert.False(settings.GetFlowBreak(new Control())); 111Assert.Throws<ArgumentNullException>("child", () => settings.GetFlowBreak(null)); 122Assert.Throws<NotSupportedException>(() => settings.GetFlowBreak(new object())); 141Assert.Equal(value, settings.GetFlowBreak(child)); 149Assert.Equal(value, settings.GetFlowBreak(child)); 157Assert.Equal(!value, settings.GetFlowBreak(child)); 197Assert.Equal(value, settings.GetFlowBreak(child)); 206Assert.Equal(value, settings.GetFlowBreak(child)); 215Assert.Equal(!value, settings.GetFlowBreak(child));