Interface ILayoutParent

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

[Draft] Interface that defines a layout Parent. Enables a layout child to access methods on its parent, e.g. Remove (during unparenting)

C#
Copy
public interface ILayoutParent

Methods

View Source

Add(LayoutItem)

Add this child to the parent.

Declaration
C#
Copy
void Add(LayoutItem layoutItem)
Parameters
Type Name Description
LayoutItem layoutItem

The layout child to add.

API Level: 6
View Source

Remove(LayoutItem)

Remove this child from the parent

Declaration
C#
Copy
void Remove(LayoutItem layoutItem)
Parameters
Type Name Description
LayoutItem layoutItem

The layout child to add.

API Level: 6