New to Telerik UI for WinForms? Start a free 30-day trial
GridViewCalculatorColumn
Updated over 1 year ago
GridViewCalculatorColumn allows RadGridView to edit numbers using popup with calculator. The default editor of the column is RadCalculatorEditor.

GridViewCalculatorColumn is never auto-generated. The following code snippet demonstrates how to create and add the column to RadGridView and also add some sample data in it:
C#
GridViewCalculatorColumn column = new GridViewCalculatorColumn("Calculator column");
this.radGridView1.Columns.Add(column);
this.radGridView1.Rows.Add(3.14159);
this.radGridView1.Rows.Add(2.71828);
this.radGridView1.Rows.Add(1.41421);
this.radGridView1.Rows.Add(0.57721);
this.radGridView1.Rows.Add(4.66920);
this.radGridView1.Rows.Add(3.27582);
this.radGridView1.Rows.Add(0.56714);