Experimental: this API is experimental and might be changed or removed in the future.

UxmlAttributeDescription.GetValueFromBag

Switch to Manual
protected T GetValueFromBag (Experimental.UIElements.IUxmlAttributes bag, Experimental.UIElements.CreationContext cc, Func<string,T,T> converterFunc, T defaultValue);

Parameters

bagA bag containg attributes and their values as strings.
ccThe context in which the values are retrieved.
converterFuncA function to convert a string value to type T.
defaultValueThe value to return if the attribute is not found in the bag.

Returns

T The attribute value from the bag, or defaultValue if the attribute is not found.

Description

Get the attribute value from the attribute bag.

The attribute is looked up using name. If it is not found, each obsoleteNames is tried in turn, from first to last.