7 writes to _type
System.Windows.Forms (7)
System\Windows\Forms\Controls\DataGridView\DataGridView.HitTestInfo.cs (1)
27
_type
= DataGridViewHitTestType.None;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (6)
9295
hti.
_type
= DataGridViewHitTestType.HorizontalScrollBar;
9301
hti.
_type
= DataGridViewHitTestType.VerticalScrollBar;
9307
hti.
_type
= DataGridViewHitTestType.TopLeftHeader;
9348
hti.
_type
= DataGridViewHitTestType.ColumnHeader;
9422
hti.
_type
= DataGridViewHitTestType.RowHeader;
9490
hti.
_type
= DataGridViewHitTestType.Cell;
5 references to _type
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.HitTestInfo.cs (5)
87
return
_type
;
95
value is HitTestInfo hti &&
_type
== hti.
_type
&& _row == hti._row && _col == hti._col;
100
public override int GetHashCode() => HashCode.Combine(
_type
, _row, _col);
107
return $"{{ Type:{
_type
}, Column:{_col}, Row:{_row} }}";