Method | Description | |
---|---|---|
AddChild ( |
Adds a child to the container. It will be at the topmost position.
|
|
AddChild ( |
Adds a child to the container at a certain index.
|
|
BoundsInSpace ( |
||
ContainsChild ( |
Determines if a certain object is a child of this container (recursively).
|
|
GetChild ( String name ) : |
Returns a child object with a certain name (non-recursively).
|
|
GetChild ( int index ) : |
Returns a child object at a certain index.
|
|
GetChild ( uint index ) : |
Returns a child object at a certain index.
|
|
GetChildIndex ( |
Returns the index of a child within the container. Returns -1 if the child is not within this container
|
|
HitTestPoint ( Point localPoint ) : |
||
RemoveAllChildren ( ) : void |
Removes all children from the container.
|
|
RemoveChild ( |
Removes a child from the container. If the object is not a child, nothing happens.
|
|
RemoveChildAt ( int index ) : void |
Removes a child at a certain index. Children above the child will move down.
|
|
Render ( |
||
SetChildIndex ( |
Moves a child to a certain index. Children at and after the replaced position move up. throws ArgumentException if the child is not found
|
|
SortChildren ( IComparer |
Sorts the children using the given IComparer.
|
|
SwapChild ( |
Swaps the indexes of two children.
|
|
SwapChildrenAt ( int index1, int index2 ) : void |
Swaps the indexes of two children.
|
public AddChild ( |
||
child | ||
return | void |
public AddChild ( |
||
child | ||
index | int | |
return | void |
public BoundsInSpace ( |
||
targetSpace | ||
return |
public ContainsChild ( |
||
child | ||
return | bool |
public GetChild ( String name ) : |
||
name | String | |
return |
public GetChild ( int index ) : |
||
index | int | |
return |
public GetChild ( uint index ) : |
||
index | uint | |
return |
public GetChildIndex ( |
||
child | ||
return | int |
public HitTestPoint ( Point localPoint ) : |
||
localPoint | Point | |
return |
public RemoveChild ( |
||
child | ||
return | void |
public Render ( |
||
support | ||
return | void |
public SetChildIndex ( |
||
child | ||
index | int | |
return | void |
public SortChildren ( IComparer |
||
comparator | IComparer |
|
return | void |
public SwapChild ( |
||
child1 | ||
child2 | ||
return | void |
public SwapChildrenAt ( int index1, int index2 ) : void | ||
index1 | int | |
index2 | int | |
return | void |