4 instantiations of DataGridViewCellParsingEventArgs
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
12745DataGridViewCellParsingEventArgs dgvcpe = new(
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewCellParsingEventArgsTests.cs (3)
23DataGridViewCellParsingEventArgs e = new(rowIndex, columnIndex, value, desiredType, inheritedCellStyle); 42DataGridViewCellParsingEventArgs e = new(1, 2, "value", typeof(string), new DataGridViewCellStyle()) 54DataGridViewCellParsingEventArgs e = new(1, 2, "value", typeof(string), new DataGridViewCellStyle())
8 references to DataGridViewCellParsingEventArgs
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (4)
12738internal DataGridViewCellParsingEventArgs OnCellParsing( 12745DataGridViewCellParsingEventArgs dgvcpe = new( 12756protected virtual void OnCellParsing(DataGridViewCellParsingEventArgs e) 25351DataGridViewCellParsingEventArgs dgvcpe = OnCellParsing(
System\Windows\Forms\Controls\DataGridView\DataGridViewEventHandlers.cs (1)
28public delegate void DataGridViewCellParsingEventHandler(object? sender, DataGridViewCellParsingEventArgs e);
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewCellParsingEventArgsTests.cs (3)
23DataGridViewCellParsingEventArgs e = new(rowIndex, columnIndex, value, desiredType, inheritedCellStyle); 42DataGridViewCellParsingEventArgs e = new(1, 2, "value", typeof(string), new DataGridViewCellStyle()) 54DataGridViewCellParsingEventArgs e = new(1, 2, "value", typeof(string), new DataGridViewCellStyle())