Interface IChangeableContainerNode
A container node that is part of a document fragment and which can be freely changed directly through the APIs.
Inherited Members
Namespace: SdlSdl.DesktopEditorEditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public interface IChangeableContainerNode : IChangeableNode, ITreeNode<IChangeableNode, IChangeableContainerNode>, IList<IChangeableNode>, ICollection<IChangeableNode>, IEnumerable<IChangeableNode>, IEnumerable
Methods
Find(Predicate<IChangeableNode>, bool)
Locate the first node that matches the predicate.
Declaration
IChangeableNode Find(Predicate<IChangeableNode> match, bool allSubNodes)
Parameters
Type | Name | Description |
---|---|---|
PredicateIChangeableNode | match | Condition used to evaluate nodes. |
bool | allSubNodes | If |
Returns
Type | Description |
---|---|
IChangeableNode | The first node that matches the predicate. |