Class EditOperationCompletingEventArgs
Information passed in the EditOperationCompleting event.
Inheritance
System.Object
    System.EventArgs
    EditOperationCompletingEventArgs
  Inherited Members
      System.EventArgs.Empty
    
    
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class EditOperationCompletingEventArgs : EventArgsRemarks
Contains information about the edit operation being completed, including its name and the specific content changes it involves.
Constructors
EditOperationCompletingEventArgs()
Declaration
public EditOperationCompletingEventArgs()Properties
Document
The affected document.
Declaration
public IDocument Document { get; set; }Property Value
| Type | Description | 
|---|---|
| IDocument | 
Name
The user friendly name of the edit operation.
Declaration
public string Name { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | 
Remarks
This is the name that appears in the Undo buffer.
Operations
The consolidated list of edit operations involved.
Declaration
public List<IAbstractEditOperation> Operations { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<IAbstractEditOperation> |