# ContainsSampleSettingsOverride

> Returns whether the sample settings for a specified build target are currently overridden.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor](/engine/6000.3/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

## ContainsSampleSettingsOverride(string)

Returns whether the sample settings for a specified build target are currently overridden.

```csharp
public bool ContainsSampleSettingsOverride(string platform)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The platform for which to query if this AudioImporter has an override.See [BuildTargetGroup](/engine/6000.3/script-reference/unityeditor/buildtargetgroup.md) for the complete list of options and type the desired platform enum name in the form of a string.

### Returns

| Type                                                          | Description                                                                |
| ------------------------------------------------------------- | -------------------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Returns true if the platform is currently overriden in this AudioImporter. |

## ContainsSampleSettingsOverride(BuildTargetGroup)

Returns whether the sample settings for a specified build target are currently overridden.

```csharp
public bool ContainsSampleSettingsOverride(BuildTargetGroup platformGroup)
```

### Parameters

**** (\[BuildTargetGroup]\(/engine/6000.3/script-reference/unityeditor/buildtargetgroup)): The platform for which to query if this AudioImporter has an override.See [BuildTargetGroup](/engine/6000.3/script-reference/unityeditor/buildtargetgroup.md) for the complete list of options.

### Returns

| Type                                                          | Description                                                                |
| ------------------------------------------------------------- | -------------------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Returns true if the platform is currently overriden in this AudioImporter. |
