Class UxmlColorAttributeDescription
Describes a XML attribute representing a string
.
Inheritance
UxmlColorAttributeDescription
Inherited Members
Namespace: UnityEngine.UIElements
Syntax
public class UxmlColorAttributeDescription : TypedUxmlAttributeDescription<Color>
Constructors
UxmlColorAttributeDescription()
Constructor.
Declaration
public UxmlColorAttributeDescription()
Properties
defaultValueAsString
The default value for the attribute, as a string.
Declaration
public override string defaultValueAsString { get; }
Property Value
Type | Description |
---|---|
String |
Overrides
UnityEngine.UIElements.TypedUxmlAttributeDescription<Color>.defaultValueAsString
Methods
GetValueFromBag(IUxmlAttributes, CreationContext)
Retrieves the value of this attribute from the attribute bag. Returns it if it is found, otherwise return
Declaration
public override Color GetValueFromBag(IUxmlAttributes bag, CreationContext cc)
Parameters
Type | Name | Description |
---|---|---|
IUxmlAttributes | bag | The bag of attributes. |
CreationContext | cc | The context in which the values are retrieved. |
Returns
Type | Description |
---|---|
Color | The value of the attribute. |
Overrides
UnityEngine.UIElements.TypedUxmlAttributeDescription<Color>.GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes, UnityEngine.UIElements.CreationContext)
TryGetValueFromBag(IUxmlAttributes, CreationContext, ref Color)
Tries to retrieve the value of this attribute from the attribute bag. Returns true if it is found, otherwise returns false.
Declaration
public bool TryGetValueFromBag(IUxmlAttributes bag, CreationContext cc, ref Color value)
Parameters
Type | Name | Description |
---|---|---|
IUxmlAttributes | bag | The bag of attributes. |
CreationContext | cc | The context in which the values are retrieved. |
Color | value | The value of the attribute. |
Returns
Type | Description |
---|---|
Boolean | True if the value could be retrieved, false otherwise. |