DataGridTableStyle::BeginEdit Method (DataGridColumnStyle^, Int32)

 

Requests an edit operation.

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

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

Parameters

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

The DataGridColumnStyle to edit.

rowNumber
Type: System::Int32

The number of the edited row.

Return Value

Type: System::Boolean

true, if the operation succeeds; otherwise, false.

The BeginEdit method is intended to notify the System.Windows.Forms::DataGrid control when the user has begun an editing operation. When the control is in edit mode, multiple edits can be made and the constraints will be temporarily unenforced.

Call the EndEdit method to quit the edit mode.

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: