# GetCustomPropertyUInt64<T>(T)

> Check whether a custom property is a ulong type and return its value.

## Definition

* **Type:** Method
* **Namespace:** [Unity.ProjectAuditor.Editor](/engine/6000.6/script-reference/unity/projectauditor/editor.md)
* **Assembly:** UnityEditor

```csharp
public ulong GetCustomPropertyUInt64<T>(T propertyEnum) where T : struct
```

### Parameters

**** (T): Enum value indicating a property.

### Returns

| Type                                                          | Description                                                                                                   |
| ------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
| [ulong](https://learn.microsoft.com/dotnet/api/system.uint64) | Returns the property's value if the property is valid and if the value is a ulong type. Otherwise, returns 0. |
