Interface IDeleteNodeOperation
Represents an edit operation that deleted a node.
Inherited Members
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public interface IDeleteNodeOperation : IAbstractEditOperation
Properties
IndexInParent
The child index in the parent container that the deleted node was located at.
Declaration
int IndexInParent { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Node
The node that was deleted.
Declaration
INode Node { get; set; }
Property Value
Type | Description |
---|---|
INode |
Parent
The parent container where the node was located before it was deleted.
Declaration
IAbstractContainerNode Parent { get; set; }
Property Value
Type | Description |
---|---|
IAbstractContainerNode |