1 instantiation of DRAWTEXTPARAMS
System.Windows.Forms (1)
System\Windows\Forms\Rendering\TextExtensions.cs (1)
135return new DRAWTEXTPARAMS
16 references to DRAWTEXTPARAMS
System.Windows.Forms (6)
System\Windows\Forms\Controls\Labels\Label.cs (1)
1122DRAWTEXTPARAMS dtParams = hfont.GetTextMargins(padding);
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
575DRAWTEXTPARAMS dtParams = hfont.GetTextMargins(padding);
System\Windows\Forms\Rendering\TextExtensions.cs (4)
81DRAWTEXTPARAMS dtparams = GetTextMargins(font, padding); 103public static DRAWTEXTPARAMS GetTextMargins( 156DRAWTEXTPARAMS* dtparams) 228DRAWTEXTPARAMS dtparams = GetTextMargins(font, padding);
System.Windows.Forms.Primitives (8)
Windows.Win32.PInvoke.USER32.dll.g.cs (5)
771 /// <inheritdoc cref="DrawTextEx(winmdroot.Graphics.Gdi.HDC, winmdroot.Foundation.PWSTR, int, winmdroot.Foundation.RECT*, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT, winmdroot.Graphics.Gdi.DRAWTEXTPARAMS*)"/> 773 internal static unsafe int DrawTextEx(winmdroot.Graphics.Gdi.HDC hdc, ref Span<char>lpchText, int cchText, ref winmdroot.Foundation.RECT lprc, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT format, winmdroot.Graphics.Gdi.DRAWTEXTPARAMS? lpdtp) 781 winmdroot.Graphics.Gdi.DRAWTEXTPARAMS lpdtpLocal = lpdtp ?? default(winmdroot.Graphics.Gdi.DRAWTEXTPARAMS); 809 internal static extern unsafe int DrawTextEx(winmdroot.Graphics.Gdi.HDC hdc, winmdroot.Foundation.PWSTR lpchText, int cchText, winmdroot.Foundation.RECT* lprc, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT format, [Optional] winmdroot.Graphics.Gdi.DRAWTEXTPARAMS* lpdtp);
Windows\Win32\PInvoke.DrawTextEx.cs (3)
8/// <inheritdoc cref="DrawTextEx(HDC, PWSTR, int, RECT*, DRAW_TEXT_FORMAT, DRAWTEXTPARAMS*)"/> 14DRAWTEXTPARAMS* lpdtp) 16lpdtp->cbSize = (uint)sizeof(DRAWTEXTPARAMS);
System.Windows.Forms.Tests (2)
Text\FontMetrics.cs (2)
47DRAWTEXTPARAMS margins = hfont.GetTextMargins(); 146DRAWTEXTPARAMS param = default;