1 write to Value
System.Windows.Forms.Primitives (1)
Windows.Win32.HTREEITEM.g.cs (1)
29
internal HTREEITEM(nint value) => this.
Value
= value;
8 references to Value
System.Windows.Forms.Primitives (8)
Windows.Win32.HTREEITEM.g.cs (7)
31
public static implicit operator nint(HTREEITEM value) => value.
Value
;
35
public static bool operator ==(HTREEITEM left, HTREEITEM right) => left.
Value
== right.
Value
;
39
public bool Equals(HTREEITEM other) => this.
Value
== other.
Value
;
43
public override int GetHashCode() => this.
Value
.GetHashCode();
45
public override string ToString() => $"0x{this.
Value
:x}";
Windows\Win32\UI\Controls\HTREEITEM.cs (1)
8
public static explicit operator LPARAM(HTREEITEM value) => (LPARAM)value.
Value
;