Class EditOperationAbortedEventArgs
Information about an aborted edit operation.
Inherited Members
Namespace: SdlSdl.DesktopEditorEditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class EditOperationAbortedEventArgs : EventArgs
Constructors
EditOperationAbortedEventArgs()
default constructor
Declaration
public EditOperationAbortedEventArgs()
EditOperationAbortedEventArgs(string, string)
Constructor with abort message.
Declaration
public EditOperationAbortedEventArgs(string source, string message)
Parameters
Type | Name | Description |
---|---|---|
string | source | name of the component that caused the edit operation to abort |
string | message |
Properties
Document
The affected document.
Declaration
public IDocument Document { get; set; }
Property Value
Type | Description |
---|---|
IDocument |
Message
The message included in the editing exception that was thrown as part of aborting the editing operation. (The exception may or may not have been handled at the time the event is raised.)
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Source
The source that aborted the editing operation.
Declaration
public string Source { get; set; }
Property Value
Type | Description |
---|---|
string |