Skip to main content

Child At Index

An expression editor function that targets a specific child element by its position.

Updated over 3 weeks ago

Overview

This function uses an index number to target a specific child within a parent stack.

Note: index values start at 0, not 1.


Parameters

childAtIndex(parent, index)

Parent

The parent container element.

Index

The zero-based index of the child to target.


For example...

childAtIndex(StackView, 0)

Returns the first child element in the stack.

Did this answer your question?