Table of Contents

Interface ILayoutGroup

Namespace
HeBianGu.Control.Dock.Layout
Assembly
HeBianGu.Control.Dock.dll

Interface definition for a group of layout elements that can act as a container.

public interface ILayoutGroup : ILayoutContainer, ILayoutElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members
Extension Methods

Methods

IndexOfChild(ILayoutElement)

Gets The zero-based index of the item within the children collection, if found; otherwise, -1.

int IndexOfChild(ILayoutElement element)

Parameters

element ILayoutElement

The element whos index should be returned.

Returns

int

The zero based index of the child or -1.

InsertChildAt(int, ILayoutElement)

Inserts a new child element at the zero based index position as indicated by the parameters.

void InsertChildAt(int index, ILayoutElement element)

Parameters

index int

The index position for inserting the new element.

element ILayoutElement

The element to be inserted.

RemoveChildAt(int)

Removes a child element at the zero based index position.

void RemoveChildAt(int index)

Parameters

index int

The index position of the element to be removed.

ReplaceChildAt(int, ILayoutElement)

Replaces a child element with a new instance at the indicated zero based index position.

void ReplaceChildAt(int index, ILayoutElement element)

Parameters

index int

The index position of the element to be replaced.

element ILayoutElement

The new element to be replaced over an existing element.

Events

ChildrenCollectionChanged

Notifies subscribers when the collection of children has changed.

event EventHandler ChildrenCollectionChanged

Event Type

EventHandler