1 write to cchTextMax
System.Windows.Forms.Primitives (1)
Windows\Win32\UI\Controls\LVITEMW.cs (1)
21cchTextMax = text.Length + 1;
5 references to cchTextMax
System.Windows.Forms.Primitives (5)
Windows\Win32\UI\Controls\LVITEMW.cs (5)
9/// Set the new text. The text length is limited by <see cref="cchTextMax"/>. 10/// A value of <see cref="cchTextMax"/> will be updated to the length of <paramref name="text"/> + 1. 15if (cchTextMax <= text.Length) 17text = text[..(cchTextMax - 1)]; 25Span<char> targetSpan = new(pszText, cchTextMax);