Class EditOperationCompletingEventArgs
Information passed in the EditOperationCompleting event.
Inheritance
Inherited Members
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class EditOperationCompletingEventArgs : EventArgs
Remarks
Contains information about the edit operation being completed, including its name and the specific content changes it involves.
Constructors
EditOperationCompletingEventArgs()
Information passed in the EditOperationCompleting event.
Declaration
public EditOperationCompletingEventArgs()
Remarks
Contains information about the edit operation being completed, including its name and the specific content changes it involves.
Properties
Document
The affected document.
Declaration
public IDocument Document { get; set; }
Property Value
Type | Description |
---|---|
IDocument |
Remarks
Contains information about the edit operation being completed, including its name and the specific content changes it involves.
Name
The user friendly name of the edit operation.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
List<IAbstractEditOperation> |
Remarks
Contains information about the edit operation being completed, including its name and the specific content changes it involves.