DataGridTableStyle::EndEdit Method (DataGridColumnStyle^, Int32, Boolean)

 

Requests an end to an edit operation.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
virtual bool EndEdit(
	DataGridColumnStyle^ gridColumn,
	int rowNumber,
	bool shouldAbort
) sealed

Parameters

gridColumn
Type: System.Windows.Forms::DataGridColumnStyle^

The DataGridColumnStyle to edit.

rowNumber
Type: System::Int32

The number of the edited row.

shouldAbort
Type: System::Boolean

A value indicating whether the operation should be stopped; true if it should stop; otherwise, false.

Return Value

Type: System::Boolean

true if the edit operation ends successfully; otherwise, false.

Similar to the BeginEdit method, the EndEdit method is intended to notify the System.Windows.Forms::DataGrid when an edit operation is ending.

The following code example calls the BeginEdit method on the current DataGridTableStyle in a System.Windows.Forms::DataGrid control.

private:
   void EditTable()
   {
      DataGridTableStyle^ dgt = myDataGrid->TableStyles[ 0 ];
      DataGridColumnStyle^ myCol = dgt->GridColumnStyles[ 0 ];
      dgt->BeginEdit( myCol, 1 );
      dgt->EndEdit( myCol, 1, true );
   }

.NET Framework
Available since 1.1
Return to top
Show: