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