RemoveProp

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern IntPtr RemoveProp(
   IntPtr hWnd,
   string lpString
);

Microsoft documentation: Link

Last updated