IShellFolderCreateViewObject Method
Requests an object that can be used to obtain information from or interact with a folder object.
Namespace: DevCase.Win32.InterfacesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
Object CreateViewObject(
IntPtr hwndOwner,
ref Guid refIid
)
Function CreateViewObject (
hwndOwner As IntPtr,
ByRef refIid As Guid
) As Object
Dim instance As IShellFolder
Dim hwndOwner As IntPtr
Dim refIid As Guid
Dim returnValue As Object
returnValue = instance.CreateViewObject(hwndOwner,
refIid)
Object^ CreateViewObject(
IntPtr hwndOwner,
Guid% refIid
)
abstract CreateViewObject :
hwndOwner : IntPtr *
refIid : Guid byref -> Object
No code example is currently available or this language may not be supported.
- hwndOwner IntPtr
-
A handle to the owner window.
If you have implemented a custom folder view object, your folder view window should be created as a child of hwndOwner.
- refIid Guid
-
A reference to the IID of the interface to retrieve through ppv, typically IID_IShellView.
Object
When this method returns successfully, contains the interface pointer requested in
refIid.
This is typically IShellView.