IPropertyBag (Interfaces)
Last changed: crnriman-24.16.23.161

.
Summary
TODO - a short description

C# Definition:

[ComImport]
[Guid("55272A00-42CB-11CE-8135-00AA004BB851"),
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IPropertyBag
{
   [PreserveSig]
   int Read(
     [In, MarshalAs(UnmanagedType.LPWStr)] string pszPropName,
     [Out, MarshalAs(UnmanagedType.Struct)] out object pVar,
     [In] IErrorLog pErrorLog
   );

   [PreserveSig]
   int Write(
     [In, MarshalAs(UnmanagedType.LPWStr)] string pszPropName,
     [In, MarshalAs(UnmanagedType.Struct)] ref object pVar
   );
}

VB Definition:

<ComImport> _
<Guid("TODO")> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)>
Interface IPropertyBag
   TODO
End Interface

User-Defined Types:

IErrorLog

Notes:

None.

Documentation