Version: Unity 6.1 Alpha (6000.1)
LanguageEnglish
  • C#

VisualElement.resolvedStyle

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public UIElements.IResolvedStyle resolvedStyle;

Description

The final rendered style values of a visual element, as it's rendered in the current frame.(Read Only)

Use resolvedStyle to find the actual rendered styling of a VisualElement in the current frame, such as style values for width, height, and colors. You can get the resolved style value of an element to make layout decisions, troubleshoot styling issues, or ensure visual consistency across different platforms.

The final rendered style is computed from applied classes, inherited styles from ancestors, and inline styles defined in UXML or C# code. Therefore, the resolved style might be different from what you set through the VisualElement.style property, depending on the other styles applied to the element.

To get the resolved style when the geometry changes, register a callback to the GeometryChangedEvent event. If the element's geometry remains unchanged, consider adding a scheduler to periodically check the element's resolved style. You can also poll the value during the MonoBehaviour.LateUpdate phase at runtime if you have access to MonoBehaviours.

For a list of all the style properties supported by UI Toolkit, refer to USS properties reference.

For more information about how to use this property and an example of how style changes when layout updates, refer to Apply styles in C# scripts.

Additional resources: VisualElement.style, VisualElement.customStyle

 // Get the resolved width of the element.
 float width = element.resolvedStyle.width;