MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetChild

Method GetChild

Source/Engine/UI/GUI/ContainerControl.cs:236–239  ·  view source on GitHub ↗

Gets child control at given index. The control index. The child control.

(int index)

Source from the content-addressed store, hash-verified

234 /// <param name="index">The control index.</param>
235 /// <returns>The child control.</returns>
236 public Control GetChild(int index)
237 {
238 return _children[index];
239 }
240
241 /// <summary>
242 /// Searches for a child control of a specific type. If there are multiple controls matching the type, only the first one found is returned.

Callers

nothing calls this directly

Calls 2

GetTypeMethod · 0.45
IsAssignableFromMethod · 0.45

Tested by

no test coverage detected