Version: 2020.2
LanguageEnglish
  • C#

UQueryState<T0>

struct in UnityEngine.UIElements

/

Implemented in:UnityEngine.UIElementsModule

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

Description

Query object containing all the selection rules. Can be saved and rerun later without re-allocating memory.

Public Methods

AtIndexSelects the n th element matching all the criteria, or null if not enough elements were found.
FirstThe first element matching all the criteria, or null if none was found.
ForEachInvokes function on all elements matching the query.
LastThe last element matching all the criteria, or null if none was found.
RebuildOnCreates a new QueryState with the same selection rules, applied on another VisualElement.
ToListReturns a list containing elements satisfying selection rules.

Operators

operator !=Compare two QueryState objects and return true if they are not equal.
operator ==Compare two QueryState objects and return true if they are equal.