10 references to TEXT_ALIGN_OPTIONS
System.Private.Windows.Core (5)
Windows.Win32.PInvokeCore.GDI32.dll.g.cs (1)
870 internal static extern uint SetTextAlign(winmdroot.Graphics.Gdi.HDC hdc, winmdroot.Graphics.Gdi.TEXT_ALIGN_OPTIONS align);
Windows\Win32\Graphics\Gdi\SetTextAlignmentScope.cs (4)
22private readonly TEXT_ALIGN_OPTIONS _previousTa; 27/// using <see cref="PInvokeCore.SetTextAlign(HDC, TEXT_ALIGN_OPTIONS)"/>. 29public SetTextAlignmentScope(HDC hdc, TEXT_ALIGN_OPTIONS ta) 31_previousTa = (TEXT_ALIGN_OPTIONS)PInvokeCore.SetTextAlign(hdc, ta);
System.Windows.Forms.Primitives (1)
Windows.Win32.PInvoke.GDI32.dll.g.cs (1)
390 internal static extern winmdroot.Graphics.Gdi.TEXT_ALIGN_OPTIONS GetTextAlign(winmdroot.Graphics.Gdi.HDC hdc);
System.Windows.Forms.Primitives.TestUtilities (4)
DeviceContextState.cs (2)
59public TEXT_ALIGN_OPTIONS TextAlign { get => _currentState.TextAlign; set => _currentState.TextAlign = value; } 76public TEXT_ALIGN_OPTIONS TextAlign { get; set; }
Metafiles\EmfRecord.cs (2)
92public EMRENUMRECORD<TEXT_ALIGN_OPTIONS>* SetTextAlignRecord 93=> Type == ENHANCED_METAFILE_RECORD_TYPE.EMR_SETTEXTALIGN ? (EMRENUMRECORD<TEXT_ALIGN_OPTIONS>*)_lpmr : null;