5 references to LF_FACESIZE
System.Drawing.Common (4)
System\Drawing\FontFamily.cs (3)
189Span<char> name = stackalloc char[(int)PInvokeCore.LF_FACESIZE]; 231Span<char> name = stackalloc char[(int)PInvokeCore.LF_FACESIZE]; 238Debug.Assert(span.Length == (int)PInvokeCore.LF_FACESIZE);
System\Drawing\Interop\LOGFONT.cs (1)
38public Span<char> lfFaceName => MemoryMarshal.CreateSpan(ref _lfFaceName[0], (int)PInvokeCore.LF_FACESIZE);
System.Windows.Forms.Primitives (1)
Interop\Richedit\Interop.CHARFORMAT2W.cs (1)
41get { fixed (char* c = _szFaceName) { return new Span<char>(c, (int)PInvokeCore.LF_FACESIZE); } }