Method FilterOut
FilterOut(params MaterialType[])
Creates a new filter that will filter out the given values (and keep the rest)
Declaration
public static IMaterialTypeFilter FilterOut(params MaterialType[] values)
Parameters
| Type | Name | Description |
|---|---|---|
| MaterialType[] | values | The values to filter out |
Returns
| Type | Description |
|---|---|
| IMaterialTypeFilter | A new material type filter |
FilterOut(Func<MaterialType, bool>)
Creates a new filter that will filter out the given values (and keep the rest)
Declaration
public static IMaterialTypeFilter FilterOut(Func<MaterialType, bool> predicate)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<MaterialType, bool> | predicate | The function to obtain the included (resp. excluded) values |
Returns
| Type | Description |
|---|---|
| IMaterialTypeFilter | A new material type filter |