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)
102Assert.False(settings.GetFlowBreak(new Control())); 113Assert.Throws<ArgumentNullException>("child", () => settings.GetFlowBreak(null)); 124Assert.Throws<NotSupportedException>(() => settings.GetFlowBreak(new object())); 143Assert.Equal(value, settings.GetFlowBreak(child)); 151Assert.Equal(value, settings.GetFlowBreak(child)); 159Assert.Equal(!value, settings.GetFlowBreak(child)); 199Assert.Equal(value, settings.GetFlowBreak(child)); 208Assert.Equal(value, settings.GetFlowBreak(child)); 217Assert.Equal(!value, settings.GetFlowBreak(child));