# uintValue

> Value of an integer property as an unsigned int.

## Definition

* **Type:** Property
* **Namespace:** [UnityEditor](/engine/6000.7/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public uint uintValue { get; set; }
```

### Remarks

Contains a valid value when [SerializedProperty.propertyType](/engine/6000.7/script-reference/unityeditor/serializedproperty/propertytype.md) is [SerializedPropertyType.Integer](/engine/6000.7/script-reference/unityeditor/serializedpropertytype/integer.md). Suitable for unsigned types of 32 bits or smaller (uint, ushort and byte).

Additional Resources: [SerializedProperty.ulongValue](/engine/6000.7/script-reference/unityeditor/serializedproperty/ulongvalue.md), [SerializedProperty.intValue](/engine/6000.7/script-reference/unityeditor/serializedproperty/intvalue.md), [SerializedProperty.numericType](/engine/6000.7/script-reference/unityeditor/serializedproperty/numerictype.md), [SerializedProperty.propertyType](/engine/6000.7/script-reference/unityeditor/serializedproperty/propertytype.md), [SerializedPropertyType.Integer](/engine/6000.7/script-reference/unityeditor/serializedpropertytype/integer.md).
