11 references to SetRemapTable
System.Drawing.Common (5)
System\Drawing\Imaging\ImageAttributes.cs (5)
317/// <inheritdoc cref="SetRemapTable(ColorMap[], ColorAdjustType)"/> 318public void SetRemapTable(params ColorMap[] map) => SetRemapTable(map, ColorAdjustType.Default); 334/// <inheritdoc cref="SetRemapTable(ColorMap[], ColorAdjustType)"/> 337/// <inheritdoc cref="SetRemapTable(ColorMap[], ColorAdjustType)"/> 427public void SetBrushRemapTable(params ColorMap[] map) => SetRemapTable(map, ColorAdjustType.Brush);
System.Drawing.Common.Tests (6)
System\Drawing\Imaging\ImageAttributesTests.cs (6)
1187imageAttr.SetRemapTable(_yellowToRedColorMap, type); 1200imageAttr.SetRemapTable(_yellowToRedColorMap, type); 1213AssertExtensions.Throws<ArgumentException>(null, () => imageAttr.SetRemapTable(_yellowToRedColorMap, ColorAdjustType.Default)); 1221AssertExtensions.ThrowsAny<ArgumentNullException, ArgumentException>(() => imageAttr.SetRemapTable(_yellowToRedColorMap, type)); 1228Assert.Throws<ArgumentNullException>(() => imageAttr.SetRemapTable(null, ColorAdjustType.Default)); 1265imageAttr.SetRemapTable(_yellowToRedColorMap, type);