Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
IQueryInfo (Interfaces)
.
[ComImport(),
Guid("00021500-0000-0000-C000-000000000046"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IQueryInfo
public interface IQueryInfo
{
[PreserveSig]
int GetInfoTip(
int dwFlags,
[MarshalAs( UnmanagedType.LPWStr )] out string ppwszTip );
[PreserveSig]
int GetInfoFlags( out int pdwFlags );
}
int GetInfoTip(
int dwFlags,
out IntPtr ppwszTip );
// ppwszTip will be freed by marshler using CoTaskMemFree()
[PreserveSig]
int GetInfoFlags( out int pdwFlags );
}
// free ppwszTip by CoTaskMemFree()
//
// IntPtr p;
// if( 0 == qi.GetInfoTip( dwFlags, out p ) )
// {
// string strTip = Marshal.PtrToStringUni( p );
// Marshal.FreeCoTaskMem( p );
// ...
// }
The Shell uses the IQueryInfo interface to retrieve flags and info tip information for an item that resides in an IShellFolder implementation. Info tips are usually displayed inside of a ToolTip control.
6/26/2010 9:39:00 PM - -211.3.11.64
Click to read this page
4/20/2023 8:19:23 AM - -186.1.3.80
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.