3 instantiations of ColorMap
System.Drawing.Common.Tests (3)
System\Drawing\Imaging\ColorMapTests.cs (3)
11ColorMap cm = new(); 19ColorMap cm = new() 29ColorMap cm = new()
19 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)"/> 318public void SetRemapTable(params ColorMap[] map) => SetRemapTable(map, ColorAdjustType.Default); 323/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{ColorMap})"/> 327public void SetRemapTable(ColorMap[] map, ColorAdjustType type) 334/// <inheritdoc cref="SetRemapTable(ColorMap[], ColorAdjustType)"/> 335public void SetRemapTable(params ReadOnlySpan<ColorMap> map) => SetRemapTable(ColorAdjustType.Default, map); 337/// <inheritdoc cref="SetRemapTable(ColorMap[], ColorAdjustType)"/> 355void SetRemapTable(ColorAdjustType type, params ReadOnlySpan<ColorMap> map) 382/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{ColorMap})"/> 427public void SetBrushRemapTable(params ColorMap[] map) => SetRemapTable(map, ColorAdjustType.Brush); 430/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{ColorMap})"/> 431public void SetBrushRemapTable(params ReadOnlySpan<ColorMap> map) => SetRemapTable(ColorAdjustType.Brush, map); 433/// <inheritdoc cref="SetRemapTable(ColorAdjustType, ReadOnlySpan{ColorMap})"/>
System.Drawing.Common.Tests (4)
System\Drawing\Imaging\ColorMapTests.cs (3)
11ColorMap cm = new(); 19ColorMap cm = new() 29ColorMap cm = new()
System\Drawing\Imaging\ImageAttributesTests.cs (1)
55private readonly ColorMap[] _yellowToRedColorMap =