1 write to cchTextMax
System.Windows.Forms.Primitives (1)
Windows\Win32\UI\Controls\LVITEMW.cs (1)
21
cchTextMax
= 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.
15
if (
cchTextMax
<= text.Length)
17
text = text[..(
cchTextMax
- 1)];
25
Span<char> targetSpan = new(pszText,
cchTextMax
);