IEditableCollectionView.CancelEdit Método

Definição

Termina a transação de edição e, se possível, restaura o valor original para o item.

public:
 void CancelEdit();
public void CancelEdit ();
abstract member CancelEdit : unit -> unit
Public Sub CancelEdit ()

Exemplos

O exemplo a seguir marcar CanCancelEdit se os valores originais do item editado podem ser restaurados antes de chamar CancelEdit. Se os valores não puderem ser restaurados, você deverá fornecer lógica adicional para fazer isso. Se puderem ser, os valores serão restaurados quando o exemplo chamar CancelEdit. Para obter todo o exemplo, consulte Alterando uma coleção usando o exemplo IEditableCollectionView.

// If the objects in the collection can discard pending 
// changes, calling IEditableCollectionView.CancelEdit
// will revert the changes. Otherwise, you must provide
// your own logic to revert the changes in the object.

if (!editableCollectionView.CanCancelEdit)
{
    // Provide logic to revert changes.
}

editableCollectionView.CancelEdit();
' If the objects in the collection can discard pending 
' changes, calling IEditableCollectionView.CancelEdit
' will revert the changes. Otherwise, you must provide
' your own logic to revert the changes in the object.

If Not editableCollectionView.CanCancelEdit Then
    ' Provide logic to revert changes.
End If

editableCollectionView.CancelEdit()

Comentários

CancelEdit define CurrentEditItem como null e faz com que a exibição de coleção saia do estado de edição. Se CanCancelEdit for true, CancelEdit também restaurará os valores originais do objeto editado.

Aplica-se a