Class BoundsIntField
BoundsInt Field UI element.
Implements
Inherited Members
Namespace: Unity.AppUI.UI
Assembly: solution.dll
Syntax
public class BoundsIntField : BaseVisualElement, IEventHandler, ITransform, ITransitionAnimations, IExperimentalFeatures, IVisualElementScheduler, IResolvedStyle, IContextOverrideElement, IInputElement<BoundsInt>, IValidatableElement<BoundsInt>, ISizeableElement, INotifyValueChanging<BoundsInt>, INotifyValueChanged<BoundsInt>
Constructors
BoundsIntField()
Default constructor.
Declaration
public BoundsIntField()
Fields
labelUssClassName
The BoundsIntField Label styling class.
Declaration
public static readonly string labelUssClassName
Field Value
Type | Description |
---|---|
string |
rowUssClassName
The BoundsIntField row styling class.
Declaration
public static readonly string rowUssClassName
Field Value
Type | Description |
---|---|
string |
sizeUssClassName
The BoundsIntField size styling class.
Declaration
public static readonly string sizeUssClassName
Field Value
Type | Description |
---|---|
string |
sxFieldUssClassName
The BoundsIntField X NumericalField styling class.
Declaration
public static readonly string sxFieldUssClassName
Field Value
Type | Description |
---|---|
string |
syFieldUssClassName
The BoundsIntField Y NumericalField styling class.
Declaration
public static readonly string syFieldUssClassName
Field Value
Type | Description |
---|---|
string |
szFieldUssClassName
The BoundsIntField Z NumericalField styling class.
Declaration
public static readonly string szFieldUssClassName
Field Value
Type | Description |
---|---|
string |
ussClassName
The BoundsIntField main styling class.
Declaration
public static readonly string ussClassName
Field Value
Type | Description |
---|---|
string |
xFieldUssClassName
The BoundsIntField X NumericalField styling class.
Declaration
public static readonly string xFieldUssClassName
Field Value
Type | Description |
---|---|
string |
yFieldUssClassName
The BoundsIntField Y NumericalField styling class.
Declaration
public static readonly string yFieldUssClassName
Field Value
Type | Description |
---|---|
string |
zFieldUssClassName
The BoundsIntField Z NumericalField styling class.
Declaration
public static readonly string zFieldUssClassName
Field Value
Type | Description |
---|---|
string |
Properties
contentContainer
The content container of the BoundsIntField. Always null.
Declaration
public override VisualElement contentContainer { get; }
Property Value
Type | Description |
---|---|
VisualElement |
Overrides
invalid
Set the validation state of the BoundsIntField.
Declaration
public bool invalid { get; set; }
Property Value
Type | Description |
---|---|
bool |
size
The BoundsIntField size.
Declaration
public Size size { get; set; }
Property Value
Type | Description |
---|---|
Size |
validateValue
The validation function to use on the BoundsIntField value.
Declaration
public Func<BoundsInt, bool> validateValue { get; set; }
Property Value
Type | Description |
---|---|
Func<BoundsInt, bool> |
value
The BoundsIntField value.
Declaration
public BoundsInt value { get; set; }
Property Value
Type | Description |
---|---|
BoundsInt |
Methods
SetValueWithoutNotify(BoundsInt)
Sets the BoundsIntField value without notifying any change event listeners.
Declaration
public void SetValueWithoutNotify(BoundsInt newValue)
Parameters
Type | Name | Description |
---|---|---|
BoundsInt | newValue | The new value to set. |