83 lines
4.4 KiB
C#
83 lines
4.4 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Drawing
|
|
{
|
|
/// <summary>Determines how the source color in a copy pixel operation is combined with the destination color to result in a final color.</summary>
|
|
// Token: 0x02000020 RID: 32
|
|
[Token(Token = "0x2000020")]
|
|
[ComVisible(true)]
|
|
public enum CopyPixelOperation
|
|
{
|
|
/// <summary>The destination area is filled by using the color associated with index 0 in the physical palette. (This color is black for the default physical palette.)</summary>
|
|
// Token: 0x0400002A RID: 42
|
|
[Token(Token = "0x400002A")]
|
|
Blackness = 66,
|
|
/// <summary>Windows that are layered on top of your window are included in the resulting image. By default, the image contains only your window. Note that this generally cannot be used for printing device contexts.</summary>
|
|
// Token: 0x0400002B RID: 43
|
|
[Token(Token = "0x400002B")]
|
|
CaptureBlt = 1073741824,
|
|
/// <summary>The destination area is inverted.</summary>
|
|
// Token: 0x0400002C RID: 44
|
|
[Token(Token = "0x400002C")]
|
|
DestinationInvert = 5570569,
|
|
/// <summary>The colors of the source area are merged with the colors of the selected brush of the destination device context using the Boolean <see langword="AND" /> operator.</summary>
|
|
// Token: 0x0400002D RID: 45
|
|
[Token(Token = "0x400002D")]
|
|
MergeCopy = 12583114,
|
|
/// <summary>The colors of the inverted source area are merged with the colors of the destination area by using the Boolean <see langword="OR" /> operator.</summary>
|
|
// Token: 0x0400002E RID: 46
|
|
[Token(Token = "0x400002E")]
|
|
MergePaint = 12255782,
|
|
/// <summary>The bitmap is not mirrored.</summary>
|
|
// Token: 0x0400002F RID: 47
|
|
[Token(Token = "0x400002F")]
|
|
NoMirrorBitmap = -2147483648,
|
|
/// <summary>The inverted source area is copied to the destination.</summary>
|
|
// Token: 0x04000030 RID: 48
|
|
[Token(Token = "0x4000030")]
|
|
NotSourceCopy = 3342344,
|
|
/// <summary>The source and destination colors are combined using the Boolean <see langword="OR" /> operator, and then resultant color is then inverted.</summary>
|
|
// Token: 0x04000031 RID: 49
|
|
[Token(Token = "0x4000031")]
|
|
NotSourceErase = 1114278,
|
|
/// <summary>The brush currently selected in the destination device context is copied to the destination bitmap.</summary>
|
|
// Token: 0x04000032 RID: 50
|
|
[Token(Token = "0x4000032")]
|
|
PatCopy = 15728673,
|
|
/// <summary>The colors of the brush currently selected in the destination device context are combined with the colors of the destination are using the Boolean <see langword="XOR" /> operator.</summary>
|
|
// Token: 0x04000033 RID: 51
|
|
[Token(Token = "0x4000033")]
|
|
PatInvert = 5898313,
|
|
/// <summary>The colors of the brush currently selected in the destination device context are combined with the colors of the inverted source area using the Boolean <see langword="OR" /> operator. The result of this operation is combined with the colors of the destination area using the Boolean <see langword="OR" /> operator.</summary>
|
|
// Token: 0x04000034 RID: 52
|
|
[Token(Token = "0x4000034")]
|
|
PatPaint = 16452105,
|
|
/// <summary>The colors of the source and destination areas are combined using the Boolean <see langword="AND" /> operator.</summary>
|
|
// Token: 0x04000035 RID: 53
|
|
[Token(Token = "0x4000035")]
|
|
SourceAnd = 8913094,
|
|
/// <summary>The source area is copied directly to the destination area.</summary>
|
|
// Token: 0x04000036 RID: 54
|
|
[Token(Token = "0x4000036")]
|
|
SourceCopy = 13369376,
|
|
/// <summary>The inverted colors of the destination area are combined with the colors of the source area using the Boolean <see langword="AND" /> operator.</summary>
|
|
// Token: 0x04000037 RID: 55
|
|
[Token(Token = "0x4000037")]
|
|
SourceErase = 4457256,
|
|
/// <summary>The colors of the source and destination areas are combined using the Boolean <see langword="XOR" /> operator.</summary>
|
|
// Token: 0x04000038 RID: 56
|
|
[Token(Token = "0x4000038")]
|
|
SourceInvert = 6684742,
|
|
/// <summary>The colors of the source and destination areas are combined using the Boolean <see langword="OR" /> operator.</summary>
|
|
// Token: 0x04000039 RID: 57
|
|
[Token(Token = "0x4000039")]
|
|
SourcePaint = 15597702,
|
|
/// <summary>The destination area is filled by using the color associated with index 1 in the physical palette. (This color is white for the default physical palette.)</summary>
|
|
// Token: 0x0400003A RID: 58
|
|
[Token(Token = "0x400003A")]
|
|
Whiteness = 16711778
|
|
}
|
|
}
|