Class UxmlHash128AttributeDescription
Describes a XML Hash128
attribute.
Inherited Members
Namespace: UnityEngine.UIElements
Syntax
public class UxmlHash128AttributeDescription : TypedUxmlAttributeDescription<Hash128>
Constructors
UxmlHash128AttributeDescription()
Constructor.
Declaration
public UxmlHash128AttributeDescription()
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<Hash128>.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 Hash128 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 |
---|---|
Hash128 | The value of the attribute. |
Overrides
UnityEngine.UIElements.TypedUxmlAttributeDescription<Hash128>.GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes, UnityEngine.UIElements.CreationContext)
TryGetValueFromBag(IUxmlAttributes, CreationContext, ref Hash128)
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 Hash128 value)
Parameters
Type | Name | Description |
---|---|---|
IUxmlAttributes | bag | The bag of attributes. |
CreationContext | cc | The context in which the values are retrieved. |
Hash128 | value | The value of the attribute. |
Returns
Type | Description |
---|---|
Boolean | True if the value could be retrieved, false otherwise. |