DOCINFO (Structures)
Last changed: -80.68.116.167

.
Summary
Unicode version of DOC_INFO structure

C# Definition:

  [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
  class DOCINFOW {
    [MarshalAs(UnmanagedType.LPWStr)]
    public string docName;
    [MarshalAs(UnmanagedType.LPWStr)]
    public string outputFile;
    [MarshalAs(UnmanagedType.LPWStr)]
    public string dataType;
  }

VB.Net Definition:

  <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
  Structure DOCINFOW
      <MarshalAs(UnmanagedType.LPWStr)> Public pDocName As String
      <MarshalAs(UnmanagedType.LPWStr)> Public pOutputFile As String
      <MarshalAs(UnmanagedType.LPWStr)> Public pDataType As String
  End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
DOCINFOW on MSDN