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