Skip to content

net472_PropertyGridHelpers.UIEditors_AutoCompleteComboBoxEditor_AutoCompleteComboBoxEditor

dparvin edited this page May 25, 2025 · 10 revisions

AutoCompleteComboBoxEditor constructor

The default constructor.

public AutoCompleteComboBoxEditor()

See Also

  • class  param($match)

      $text = $match.Groups[1].Value
      $originalLink = $match.Groups[2].Value -replace '\\', '/'
      $normalizedPath = $originalLink.TrimStart('./')
    
      if ($pathMap.ContainsKey($normalizedPath)) {
          $flattenedName = $pathMap[$normalizedPath]
          $flattenedNameNoExt = [System.IO.Path]::GetFileNameWithoutExtension($flattenedName)
          return "[$text]($flattenedNameNoExt)"
      } else {
          Write-Warning "Unresolved link: $originalLink in $file"
          return $match.Value
      }
    
  • namespace  param($match)

      $text = $match.Groups[1].Value
      $originalLink = $match.Groups[2].Value -replace '\\', '/'
      $normalizedPath = $originalLink.TrimStart('./')
    
      if ($pathMap.ContainsKey($normalizedPath)) {
          $flattenedName = $pathMap[$normalizedPath]
          $flattenedNameNoExt = [System.IO.Path]::GetFileNameWithoutExtension($flattenedName)
          return "[$text]($flattenedNameNoExt)"
      } else {
          Write-Warning "Unresolved link: $originalLink in $file"
          return $match.Value
      }
    
  • assembly  param($match)

      $text = $match.Groups[1].Value
      $originalLink = $match.Groups[2].Value -replace '\\', '/'
      $normalizedPath = $originalLink.TrimStart('./')
    
      if ($pathMap.ContainsKey($normalizedPath)) {
          $flattenedName = $pathMap[$normalizedPath]
          $flattenedNameNoExt = [System.IO.Path]::GetFileNameWithoutExtension($flattenedName)
          return "[$text]($flattenedNameNoExt)"
      } else {
          Write-Warning "Unresolved link: $originalLink in $file"
          return $match.Value
      }
    

Clone this wiki locally