OBJECTDESCRIPTOR (Structures)
Last changed: -104.254.90.122

.
Summary
TODO - a short description

//ref https://docs.microsoft.com/en-us/windows/win32/api/oleidl/ns-oleidl-objectdescriptor

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public struct OBJECTDESCRIPTOR
{
    public OBJECTDESCRIPTOR ()
    {
    }

    public uint cbSize;
    public Guid clsid;
    public DVASPECT dwDrawAspect;
    public Size  sizel;
    public Point pointl;
    public int dwStatus;
    public int dwFullUserTypeName;
    public int dwSrcOfCopy;
    /* variable sized string data may appear here */
}

VB Definition:

<StructLayout(LayoutKind.Sequential)>
Public Class OBJECTDESCRIPTOR

     Public Sub New()

     End Sub
     Public cbSize As UInteger
     Public clsid As Guid
     Public dwDrawAspect As DVASPECT
     Public sizel As Size
     Public pointl As Point
     Public dwStatus As Integer
     Public dwFullUserTypeName As Integer
     Public dwSrcOfCopy As Integer
     ' variable sized string data may appear here
End Class

User-Defined Field Types:

None.

Notes:

None.

Documentation