4 writes to flags
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ListView.cs (4)
3173lvFindInfo.flags = NativeMethods.LVFI_STRING; 3174lvFindInfo.flags |= (isPrefixSearch ? NativeMethods.LVFI_PARTIAL : 0); 3177lvFindInfo.flags = NativeMethods.LVFI_NEARESTXY; 3281info.flags = NativeMethods.LVFI_PARAM;
6 references to flags
System.Windows.Forms (6)
winforms\Managed\System\WinForms\ListView.cs (6)
6171if ((nmlvif.lvfi.flags & NativeMethods.LVFI_PARAM) != 0) { 6176bool isTextSearch = ((nmlvif.lvfi.flags & NativeMethods.LVFI_STRING) != 0) || 6177((nmlvif.lvfi.flags & NativeMethods.LVFI_PARTIAL) != 0); 6179bool isPrefixSearch = (nmlvif.lvfi.flags & NativeMethods.LVFI_PARTIAL) != 0; 6187if ((nmlvif.lvfi.flags & NativeMethods.LVFI_NEARESTXY) != 0) { 6192if ((nmlvif.lvfi.flags & NativeMethods.LVFI_NEARESTXY) != 0) {