| File: System\Windows\Forms\VisualStyles\HitTestCode.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms.VisualStyles; public enum HitTestCode { Nowhere = (int)PInvoke.HTNOWHERE, Client = (int)PInvoke.HTCLIENT, Left = (int)PInvoke.HTLEFT, Right = (int)PInvoke.HTRIGHT, Top = (int)PInvoke.HTTOP, Bottom = (int)PInvoke.HTBOTTOM, TopLeft = (int)PInvoke.HTTOPLEFT, TopRight = (int)PInvoke.HTTOPRIGHT, BottomLeft = (int)PInvoke.HTBOTTOMLEFT, BottomRight = (int)PInvoke.HTBOTTOMRIGHT }