ILayoutContainer - wesley7child/OuterPlugin GitHub Wiki
The public interface ILayoutContainer
is derived from the ILayoutElement interface and can be used to:
- Browse towards the Parent or Root element (via ILayoutElement) of a layoutable object or
- manipulate child elements by removing or replacing them with another object that implements ILayoutElement.
Properties
- IEnumerable<ILayoutElement> Children { get; }
- int ChildrenCount { get; }
Methods
- void RemoveChild( ILayoutElement element );
- void ReplaceChild( ILayoutElement oldElement, ILayoutElement newElement );