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