1 write to Value
Microsoft.Private.Windows.Core (1)
Windows.Win32.COLORREF.g.cs (1)
34
internal COLORREF(uint value) => this.
Value
= value;
8 references to Value
Microsoft.Private.Windows.Core (8)
Windows.Win32.COLORREF.g.cs (7)
36
public static implicit operator uint(COLORREF value) => value.
Value
;
40
public static bool operator ==(COLORREF left, COLORREF right) => left.
Value
== right.
Value
;
44
public bool Equals(COLORREF other) => this.
Value
== other.
Value
;
48
public override int GetHashCode() => this.
Value
.GetHashCode();
50
public override string ToString() => $"0x{this.
Value
:x}";
Windows\Win32\Foundation\COLORREF.cs (1)
23
public static implicit operator Color(COLORREF color) => ColorTranslator.FromWin32((int)color.
Value
);