32 references to LeftSizeable
System.Windows.Forms.Design (29)
System\Windows\Forms\Design\Behavior\GrabHandleGlyph.cs (3)
35rules = SelectionRules.TopSizeable | SelectionRules.LeftSizeable; 50rules = SelectionRules.BottomSizeable | SelectionRules.LeftSizeable; 84rules = SelectionRules.LeftSizeable;
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (7)
106else if ((rules & SelectionRules.LeftSizeable) != 0) 187else if ((rules & SelectionRules.LeftSizeable) != 0) 561else if ((((_targetResizeRules & SelectionRules.RightSizeable) != 0) || ((_targetResizeRules & SelectionRules.LeftSizeable) != 0)) && 709((((_targetResizeRules & SelectionRules.LeftSizeable) != 0) && ((resizeRules & SelectionRules.LeftSizeable) != 0)) && (fRTL))) 722((((_targetResizeRules & SelectionRules.LeftSizeable) != 0) && ((resizeRules & SelectionRules.LeftSizeable) != 0)) && (!fRTL)))
System\Windows\Forms\Design\Behavior\SelectionBorderGlyph.cs (2)
60if ((selRules & SelectionRules.LeftSizeable) != 0) 63rules = SelectionRules.LeftSizeable;
System\Windows\Forms\Design\ControlCommandSet.cs (1)
486if ((rules & SelectionRules.LeftSizeable) != 0)
System\Windows\Forms\Design\ControlDesigner.cs (7)
251rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.LeftSizeable | SelectionRules.RightSizeable); 254rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.LeftSizeable | SelectionRules.BottomSizeable); 260rules &= ~(SelectionRules.Moveable | SelectionRules.LeftSizeable | SelectionRules.BottomSizeable | SelectionRules.RightSizeable); 263rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.LeftSizeable | SelectionRules.RightSizeable | SelectionRules.BottomSizeable); 784if ((rules & SelectionRules.LeftSizeable) != 0) 798if ((rules & SelectionRules.LeftSizeable) != 0) 809if ((rules & SelectionRules.LeftSizeable) != 0)
System\Windows\Forms\Design\DocumentDesigner.cs (1)
169rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.LeftSizeable);
System\Windows\Forms\Design\MonthCalendarDesigner.cs (1)
26rules &= ~(SelectionRules.TopSizeable | SelectionRules.LeftSizeable);
System\Windows\Forms\Design\SelectionRules.cs (1)
67AllSizeable = TopSizeable | BottomSizeable | LeftSizeable | RightSizeable
System\Windows\Forms\Design\SelectionUIHandler.cs (1)
370if ((_rules & SelectionRules.LeftSizeable) != 0)
System\Windows\Forms\Design\SelectionUIService.cs (2)
558rules |= SelectionRules.LeftSizeable; 1073if ((_dragRules & SelectionRules.Moveable) == SelectionRules.None && (_dragRules & (SelectionRules.TopSizeable | SelectionRules.LeftSizeable)) == SelectionRules.None)
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (2)
438if ((rules & SelectionRules.LeftSizeable) != SelectionRules.LeftSizeable)
System\Windows\Forms\Design\TrackBarDesigner.cs (1)
32rules &= ~(SelectionRules.LeftSizeable | SelectionRules.RightSizeable);
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\ComboBoxDesignerTests.cs (1)
41selectionRules.Should().Be(SelectionRules.LeftSizeable | SelectionRules.RightSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\DateTimePickerDesignerTests.cs (1)
43selectionRules.Should().Be(SelectionRules.LeftSizeable | SelectionRules.RightSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\MaskedTextBoxDesignerTests.cs (1)
31selectionRules.Should().Be(SelectionRules.LeftSizeable | SelectionRules.RightSizeable | SelectionRules.Moveable | SelectionRules.Visible);