Class Selector
Implements interfaces:ICloneable
Description
Defines the pattern to select elements.
Syntax
public class Selector : ICloneable
Methods
Name | Description |
---|---|
AtIndex(IEnumerable<VisualElement>, int, TypeSearch, Predicate<VisualElement>) | Retrieves aVisualElementat a specified index according to the filter applied via the selector. |
AtIndex(UIDocument, int, TypeSearch, Predicate<VisualElement>) | Retrieves aVisualElementat a specified index according to the filter applied via the selector. |
AtIndex(VisualElement, int, TypeSearch, Predicate<VisualElement>) | Retrieves aVisualElementat a specified index according to the filter applied via the selector. |
AtIndex<TResult>(IEnumerable<VisualElement>, int, TypeSearch, Predicate<TResult>) | Retrieves an element at a specified index according to the filter applied via the selector. |
AtIndex<TResult>(UIDocument, int, TypeSearch, Predicate<TResult>) | Retrieves a element at a specified index according to the filter applied via the selector. |
AtIndex<TResult>(VisualElement, int, TypeSearch, Predicate<TResult>) | Retrieves an element at a specified index according to the filter applied via the selector. |
AtLastIndex(IEnumerable<VisualElement>, int, TypeSearch, Predicate<VisualElement>) | Retrieves aVisualElementat a specified index (counting from the end) according to the filter applied via the selector. |
AtLastIndex(UIDocument, int, TypeSearch, Predicate<VisualElement>) | Retrieves aVisualElementat a specified index (counting from the end) according to the filter applied via the selector. |
AtLastIndex(VisualElement, int, TypeSearch, Predicate<VisualElement>) | Retrieves aVisualElementat a specified index (counting from the end) according to the filter applied via the selector. |
AtLastIndex<TResult>(IEnumerable<VisualElement>, int, TypeSearch, Predicate<TResult>) | Retrieves an element at a specified index (counting from the end) according to the filter applied via the selector. |
AtLastIndex<TResult>(UIDocument, int, TypeSearch, Predicate<TResult>) | Retrieves a element at a specified index (counting from the end) according to the filter applied via the selector. |
AtLastIndex<TResult>(VisualElement, int, TypeSearch, Predicate<TResult>) | Retrieves an element at a specified index (counting from the end) according to the filter applied via the selector. |
Builder(string, string) | Initializes a Selector Builder |
Builder(string, params string[]) | Initializes a Selector Builder |
Builder(Type, string, string) | Initializes a Selector Builder |
Builder(Type, string, params string[]) | Initializes a Selector Builder |
Builder<TElement>(string, string) | Initializes a Selector Builder |
Builder<TElement>(string, params string[]) | Initializes a Selector Builder |
Clone() | Creates a new object that is a copy of the current instance. |
Exists(IEnumerable<VisualElement>, TypeSearch, Predicate<VisualElement>) | Checks if there is aVisualElementaccording to the filter applied via the selector. |
Exists(UIDocument, TypeSearch, Predicate<VisualElement>) | Checks if there is aVisualElementaccording to the filter applied via the selector. |
Exists(VisualElement, TypeSearch, Predicate<VisualElement>) | Checks if there is aVisualElementaccording to the filter applied via the selector. |
Exists<TResult>(IEnumerable<VisualElement>, TypeSearch, Predicate<TResult>) | Checks if there is an element according to the filter applied via the selector. |
Exists<TResult>(UIDocument, TypeSearch, Predicate<TResult>) | Checks if there is a element according to the filter applied via the selector. |
Exists<TResult>(VisualElement, TypeSearch, Predicate<TResult>) | Checks if there is an element according to the filter applied via the selector. |
Find(IEnumerable<VisualElement>, TypeSearch, Predicate<VisualElement>) | Retrieves allVisualElementfiltered according to the selector. |
Find(UIDocument, TypeSearch, Predicate<VisualElement>) | Retrieves allVisualElementfiltered according to the selector. |
Find(VisualElement, TypeSearch, Predicate<VisualElement>) | Retrieves allVisualElementfiltered according to the selector. |
Find<TResult>(IEnumerable<VisualElement>, TypeSearch, Predicate<TResult>) | Retrieves all elements filtered according to the selector. |
Find<TResult>(UIDocument, TypeSearch, Predicate<TResult>) | Retrieves all elements filtered according to the selector. |
Find<TResult>(VisualElement, TypeSearch, Predicate<TResult>) | Retrieves all elements filtered according to the selector. |
GetFirst(IEnumerable<VisualElement>, TypeSearch, Predicate<VisualElement>) | Retrieves the firstVisualElementaccording to the filter applied via the selector. |
GetFirst(UIDocument, TypeSearch, Predicate<VisualElement>) | Retrieves the firstVisualElementaccording to the filter applied via the selector. |
GetFirst(VisualElement, TypeSearch, Predicate<VisualElement>) | Retrieves the firstVisualElementaccording to the filter applied via the selector. |
GetFirst<TResult>(IEnumerable<VisualElement>, TypeSearch, Predicate<TResult>) | Retrieves the first element according to the filter applied via the selector. |
GetFirst<TResult>(UIDocument, TypeSearch, Predicate<TResult>) | Retrieves the first element according to the filter applied via the selector. |
GetFirst<TResult>(VisualElement, TypeSearch, Predicate<TResult>) | Retrieves the first element according to the filter applied via the selector. |
GetLast(IEnumerable<VisualElement>, TypeSearch, Predicate<VisualElement>) | Retrieves the lastVisualElementaccording to the filter applied via the selector. |
GetLast(UIDocument, TypeSearch, Predicate<VisualElement>) | Retrieves the lastVisualElementaccording to the filter applied via the selector. |
GetLast(VisualElement, TypeSearch, Predicate<VisualElement>) | Retrieves the lastVisualElementaccording to the filter applied via the selector. |
GetLast<TResult>(IEnumerable<VisualElement>, TypeSearch, Predicate<TResult>) | Retrieves the last element according to the filter applied via the selector. |
GetLast<TResult>(UIDocument, TypeSearch, Predicate<TResult>) | Retrieves the last element according to the filter applied via the selector. |
GetLast<TResult>(VisualElement, TypeSearch, Predicate<TResult>) | Retrieves the last element according to the filter applied via the selector. |
Match(IEnumerable<VisualElement>, VisualElement, TypeSearch, MatchCombinator) | Checks if there is a match between the currentVisualElement(through a combinator) and the hosts, filtered by the selector.. |
Match(UIDocument, VisualElement, TypeSearch, MatchCombinator) | Checks if there is a match between the currentVisualElement(through a combinator) and the hosts, filtered by the selector. |
Match(VisualElement, VisualElement, TypeSearch, MatchCombinator) | Checks if there is a match between the currentVisualElement(through a combinator) and the host, filtered by the selector.. |
Parse(ReadOnlySpan<char>) | BuildsSelectorfrom text. |
Parse(ReadOnlySpan<char>, out string) | BuildsSelectorfrom text. |