Component Runtimes
Introduction
Components in a Gum project can be instantiated in custom code. Note that this is not a requirement to use a component since you can also add an instance of the component in your screen.
Code Example - Instantiating a Component
Before instantiating a component, you must first load the project using the standard .gumx loading code as shown in the following code block:
Once you have instantiated your project, you can create a component as shown in the following code:
The Components property contains a list of all components, so you can also access components by name or other property. For example, the First method can be used to find a component by name as shown in the following code:
Note that the name passed to the First method should match the name given in Gum. For example, in this case the code searches for a component named ColoredRectangleComponent.
If a component is in a folder, then its name is the qualified name relative to the Components folder. For example, the following component's name at runtime is "Buttons/StandardButton"
The ToGraphicalUiElement method can automatically add the component to the root for rendering, or alternatively it can be added to an existing container. If adding to an existing container, then the ToGraphicalUiElement's addToManagers parameter should be false as shown in the following code:
Troubleshooting Component Creation
If your component is not visible, this may be a file issue. By default Gum project loading will not throw exceptions on missing files, and it will attempt to re-create missing file components. For more information, see the Troubleshooting section in the Loading .gumx page.
SetProperty
The SetProperty method can be used to set properties on components which are not natively part of GraphicalUiElement. This is useful in the following situations:
Setting a property which may not exist on all GraphicalUiElements, such as the Text property on a GraphicalUiElement for a Text standard element
Setting a property which has been exposed
If a GraphicalUiElement is a Text instance, the Text property can be assigned through SetProperty as shown in the following code:
If a component has an exposed variable, then this variable can be assigned through SetProperty. For example, consider the following component which exposes its Text variable:
This can be assigned through the SetProperty. Be sure to use the name exactly as it appears in Gum:
Apply State
States can be applied in code by string (unqualified name), or by accessing the state on the backing ComponentSave. Note, this can also be performed on screens and standards.
Last updated