# doubleValue

> Value of a float property as a double.

## Definition

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

```csharp
public double doubleValue { get; set; }
```

### Remarks

Contains a valid value when [SerializedProperty.propertyType](/engine/6000.7/script-reference/unityeditor/serializedproperty/propertytype.md) is [SerializedPropertyType.Float](/engine/6000.7/script-reference/unityeditor/serializedpropertytype/float.md). For accessing float and double properties. When assigning a float to [SerializedProperty.doubleValue](/engine/6000.7/script-reference/unityeditor/serializedproperty/doublevalue.md), the value is clamped to the range of a float.

Additional Resources: [SerializedProperty.floatValue](/engine/6000.7/script-reference/unityeditor/serializedproperty/floatvalue.md), [SerializedProperty.propertyType](/engine/6000.7/script-reference/unityeditor/serializedproperty/propertytype.md), [SerializedPropertyType.Float](/engine/6000.7/script-reference/unityeditor/serializedpropertytype/float.md), [SerializedPropertyNumericType.Double](/engine/6000.7/script-reference/unityeditor/serializedpropertynumerictype/double.md).
