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