7 overrides of LineType
System.Windows.Forms.Design (7)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
74
public override Type
LineType
=> typeof(CheckBoxPropertyLine);
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
480
public override Type
LineType
=> typeof(EditorPropertyLine);
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (1)
127
public override Type
LineType
=> typeof(MethodLine);
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (1)
132
public override Type
LineType
=> typeof(PanelHeaderLine);
System\ComponentModel\Design\DesignerActionPanel.SeparatorLine.cs (1)
45
public override Type
LineType
=> typeof(SeparatorLine);
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
369
public override Type
LineType
=> typeof(TextBoxPropertyLine);
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (1)
83
public override Type
LineType
=> typeof(TextLine);
2 references to LineType
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionPanel.cs (2)
864
if (oldLine.GetType() == newLineInfo.
LineType
)
880
Debug.Assert(newLine.GetType() == newLineInfo.
LineType
);