15 references to ColorMap
System.Drawing (1)
System.Drawing.cs (1)
72
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Imaging.
ColorMap
))]
System.Drawing.Common (14)
System\Drawing\Imaging\ColorMap.cs (1)
12
/// Initializes a new instance of the <see cref='
ColorMap
'/> class.
System\Drawing\Imaging\ImageAttributes.cs (13)
317
/// <inheritdoc cref="SetRemapTable(
ColorMap
[], ColorAdjustType)"/>
318
public void SetRemapTable(params
ColorMap
[] map) => SetRemapTable(map, ColorAdjustType.Default);
323
/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{
ColorMap
})"/>
327
public void SetRemapTable(
ColorMap
[] map, ColorAdjustType type)
334
/// <inheritdoc cref="SetRemapTable(
ColorMap
[], ColorAdjustType)"/>
335
public void SetRemapTable(params ReadOnlySpan<
ColorMap
> map) => SetRemapTable(ColorAdjustType.Default, map);
337
/// <inheritdoc cref="SetRemapTable(
ColorMap
[], ColorAdjustType)"/>
355
void SetRemapTable(ColorAdjustType type, params ReadOnlySpan<
ColorMap
> map)
382
/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{
ColorMap
})"/>
427
public void SetBrushRemapTable(params
ColorMap
[] map) => SetRemapTable(map, ColorAdjustType.Brush);
430
/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{
ColorMap
})"/>
431
public void SetBrushRemapTable(params ReadOnlySpan<
ColorMap
> map) => SetRemapTable(ColorAdjustType.Brush, map);
433
/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{
ColorMap
})"/>