Navigation
API > API/Runtime > API/Runtime/SlateCore > API/Runtime/SlateCore/Layout
References
| Module | SlateCore |
| Header | /Engine/Source/Runtime/SlateCore/Public/Layout/Children.h |
| Include | #include "Layout/Children.h" |
Syntax
template<typename SlotType>
class TPanelChildrenConstIterator
Constructors
| Type | Name | Description | |
|---|---|---|---|
TPanelChildrenConstIterator
(
const TPanelChildren< SlotType >& InContainer, |
|||
TPanelChildrenConstIterator
(
const TPanelChildren< SlotType >& InContainer, |
Functions
| Type | Name | Description | |
|---|---|---|---|
| int32 | GetIndex () |
Returns an index to the current element. | |
| void | Reset () |
Resets the iterator to the first element. | |
| void | SetToEnd () |
Sets iterator to the last element. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| TPanelChildrenConstIterator< SlotType > & | operator-- () |
Moves iterator to the previous element in the container. | |
| Conversion to "bool" returning true if the iterator has not reached the last element. | |||
| const SlotType & | operator* () |
||
| TPanelChildrenConstIterator< SlotType > & | operator++ () |
Advances iterator to the next element in the container. | |
| const SlotType * | operator-> () |